mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +00:00
Fixed: Wrong comparison
--HG-- branch : compatibility-develop
This commit is contained in:
parent
cdab63fb2c
commit
a1c89b0d7b
1 changed files with 1 additions and 1 deletions
|
@ -1919,7 +1919,7 @@ class CAHOpenURL : public IActionHandler
|
||||||
if (pos_lang != string::npos)
|
if (pos_lang != string::npos)
|
||||||
pos_lang = url.find("=en#");
|
pos_lang = url.find("=en#");
|
||||||
|
|
||||||
if (pos_lang != string::npos)
|
if (pos_lang == string::npos)
|
||||||
url.replace(pos_lang + 1, 2, ClientCfg.getHtmlLanguageCode());
|
url.replace(pos_lang + 1, 2, ClientCfg.getHtmlLanguageCode());
|
||||||
|
|
||||||
// append language
|
// append language
|
||||||
|
|
Loading…
Reference in a new issue