2013-01-21, 03:27:10
(Replying to Oleg06, http://get-simple.info/forums/showthread...5#pid32075 )
Temporary fix for Russian dates (month names, week days) encoding:
Edit blog/class/primary/Blog.php, find this (around line 750-760)
Change it to:
(I've not tested)
Temporary fix for Russian dates (month names, week days) encoding:
Edit blog/class/primary/Blog.php, find this (around line 750-760)
PHP Code:
setlocale(LC_TIME, $this->getSettingsData("lang"));
Change it to:
PHP Code:
setlocale(LC_TIME, 'ru_RU.UTF8', 'ru.UTF8', 'ru_RU.UTF-8', 'ru.UTF-8', 'ru_RU', 'ru');
(I've not tested)