Fix date format

This commit is contained in:
Aleksei Miheev
2014-01-19 08:36:59 +00:00
parent af4121038f
commit 840a5c13dd

View File

@@ -791,7 +791,7 @@ function timeformat($logTime, $show_today = true)
// Format any other characters..
return strftime($str, $time);
*/
$fmt = datefmt_create("ru_RU", NULL, NULL, 'Europe/Moscow', NULL, "d MMMM Y, HH:mm");
$fmt = datefmt_create("ru_RU", NULL, NULL, 'Europe/Moscow', NULL, "d MMMM yyyy, HH:mm");
return str_replace(' ', ' ', datefmt_format($fmt, $time));