From 772fe63158f84e84e08b18220c4ec8ca0ed7acd8 Mon Sep 17 00:00:00 2001 From: totoro Date: Mon, 27 Apr 2026 16:54:17 +0900 Subject: [PATCH] [!] replace '< ' and '>' characters by '[' and ']' characters when the dictionary can't be find. With these '<' '>' directly into the HTML made the browser confuse and broke the webpage to show --- web_controllers/language/language_management.anubis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_controllers/language/language_management.anubis b/web_controllers/language/language_management.anubis index ad8b39d..65157cf 100644 --- a/web_controllers/language/language_management.anubis +++ b/web_controllers/language/language_management.anubis @@ -29,7 +29,7 @@ public define (String symbolic_name) -> String { failure then logger(logError, "Can't load translation dictionary for '"+dictionary_collection_name+"'"); - (String symbolic_name) |-> "<" + symbolic_name + ">", + (String symbolic_name) |-> "[" + symbolic_name + "]", success(L3 local) then //now we set the current language -- libgit2 0.21.4