Quote:
Originally Posted by Kirinovich-Sv
Please help me solve the problem. I use the Russian language.
When I add answers in Multiple Choice, and click 'Save', Cyrillic text is not recognized correctly. Example:
http://savepic.net/4148790.htm
after saving:
http://savepic.net/4133430.htm
Try it yourself. Add the following answers in Russian in Multiple Choice (Checkbox): Ответ 1, Ответ 2, Ответ 3
Thank you.
|
Try the following:
Replace "htmlentities" with "htmlspecialchars" in "admincp/advappadmin.php" and "application-edit.php".
It appears once in each file, so replace:
PHP Code:
$expected = htmlentities($expected, ENT_QUOTES);
with:
PHP Code:
$expected = htmlspecialchars($expected, ENT_QUOTES);
I had a similar problem with Greek characters and that's the only I way I could get around it. I guess it has something to do with my CentOS configuration, but I didn't get any deeper.