more consistent fallback format for smart_date_time()

This commit is contained in:
Andrew Dolgov 2007-04-26 07:32:07 +01:00
parent 7a74abd5da
commit 7d7e050970
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}