From 3e2bfdccc4d450e48260fa1db8dbbc92328846dc Mon Sep 17 00:00:00 2001 From: Aleksei Miheev Date: Sun, 12 Jan 2014 11:16:20 +0000 Subject: [PATCH] Update date format some more --- Sources/Subs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Subs.php b/Sources/Subs.php index c8a5365..8ad32b5 100644 --- a/Sources/Subs.php +++ b/Sources/Subs.php @@ -791,8 +791,8 @@ 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"); - return datefmt_format($fmt, $time); + $fmt = datefmt_create("ru_RU", NULL, NULL, 'Europe/Moscow', NULL, "d MMMM Y, HH:mm"); + return str_replace(' ', ' ', datefmt_format($fmt, $time)); }