From d534bb153551a914bf00c81d02743cdbafdfc450 Mon Sep 17 00:00:00 2001 From: simo Date: Mon, 2 Jan 2006 08:21:58 +0000 Subject: change all timestamps to display utc --- web/html/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/html/index.php') diff --git a/web/html/index.php b/web/html/index.php index 0cd1d5f8..6482e1e3 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -157,10 +157,10 @@ while ($row = mysql_fetch_assoc($result)) { $mod_int = intval($row["ModifiedTS"]); $sub_int = intval($row["SubmittedTS"]); if ($mod_int != 0) { - $modstring = date("r", $mod_int); + $modstring = gmdate("r", $mod_int); } elseif ($sub_int != 0) { - $modstring = ' '.date("r", $sub_int); + $modstring = ' '.gmdate("r", $sub_int); } else { $mod_string = "(unknown)"; -- cgit v1.2.3-24-g4f1b