]> git.wh0rd.org Git - tt-rss.git/commitdiff
more consistent fallback format for smart_date_time()
authorAndrew Dolgov <fox@madoka.spb.ru>
Thu, 26 Apr 2007 06:32:07 +0000 (07:32 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Thu, 26 Apr 2007 06:32:07 +0000 (07:32 +0100)
functions.php

index dee0d08c324c45e66a6d21b8c45d1597992c91c2..84ebc60c587791cd92eef0f75c73c952b9f60d38 100644 (file)
                } 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);
                }
        }