summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-04-26 07:32:07 +0100
committerAndrew Dolgov <[email protected]>2007-04-26 07:32:07 +0100
commit7d7e050970773ab46cb22c9cfd99945f7ef44599 (patch)
tree14dcfe75013a22a06d2df2f8a74129c77c829537 /functions.php
parent7a74abd5da830d065e38b42a6c67dd2dc4c3fc0e (diff)
more consistent fallback format for smart_date_time()
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
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);
}
}