diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2007-04-26 07:32:07 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2007-04-26 07:32:07 +0100 |
| commit | 7d7e050970773ab46cb22c9cfd99945f7ef44599 (patch) | |
| tree | 14dcfe75013a22a06d2df2f8a74129c77c829537 | |
| parent | 7a74abd5da830d065e38b42a6c67dd2dc4c3fc0e (diff) | |
more consistent fallback format for smart_date_time()
| -rw-r--r-- | functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php index dee0d08c3..84ebc60c5 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); } } |