From da45389c4295b9559e3e43374710fb2f4b8f36a5 Mon Sep 17 00:00:00 2001 From: Shish Date: Sun, 22 Jan 2012 14:40:25 +0000 Subject: [PATCH] have autodate include hours and minutes --- core/util.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/util.inc.php b/core/util.inc.php index 144c5e4e..dcb97f02 100644 --- a/core/util.inc.php +++ b/core/util.inc.php @@ -130,7 +130,7 @@ function to_shorthand_int($int) { */ function autodate($date, $html=true) { $cpu = date('c', strtotime($date)); - $hum = date('F j, Y', strtotime($date)); + $hum = date('F j, Y; H:i', strtotime($date)); return ($html ? "" : $hum); }