1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 04:05:58 +00:00

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

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