Commit 772fe63158f84e84e08b18220c4ec8ca0ed7acd8

Authored by David RENÉ
1 parent 3d1205e1

[!] replace '< ' and '>' characters by '[' and ']' characters when the dictiona…

…ry can't be find. With these '<' '>' directly into the HTML made the browser confuse and broke the webpage to show
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
web_controllers/language/language_management.anubis
... ... @@ -29,7 +29,7 @@ public define (String symbolic_name) -&gt; String
29 29 {
30 30 failure then
31 31 logger(logError, "Can't load translation dictionary for '"+dictionary_collection_name+"'");
32   - (String symbolic_name) |-> "<" + symbolic_name + ">",
  32 + (String symbolic_name) |-> "[" + symbolic_name + "]",
33 33  
34 34 success(L3 local) then
35 35 //now we set the current language
... ...