From: Andrew Dolgov Date: Thu, 26 Apr 2007 06:32:07 +0000 (+0100) Subject: more consistent fallback format for smart_date_time() X-Git-Tag: schema_freeze_for_1.2.11~93 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=7d7e050970773ab46cb22c9cfd99945f7ef44599;p=tt-rss.git more consistent fallback format for smart_date_time() --- diff --git a/functions.php b/functions.php index dee0d08c..84ebc60c 100644 --- a/functions.php +++ b/functions.php @@ -1359,7 +1359,7 @@ } else if (date("Y", $timestamp) == date("Y")) { return date("M d, G:i", $timestamp); } else { - return date("Y/m/d G:i", $timestamp); + return date("Y/m/d, G:i", $timestamp); } }