Everybody using national characters must insert setlocale function into the code. That's for sure.
Don't know the most appropriate place.
I added one in admin/functions.php -> function indexpost
and another in showthread.php
Examples (change locale for your own language)
setlocale("LC_ALL","ru_RU.KOI8-R");
or
setlocale("LC_ALL","de_DE.ISO-8859-1");
or
setlocale("LC_ALL","fr_FR.ISO-8859-1");
That will correct problem with unappropriate indexing of non-english messages.
|