diff options
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
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 = '<img src="/images/new.gif"/> '.date("r", $sub_int); + $modstring = '<img src="/images/new.gif"/> '.gmdate("r", $sub_int); } else { $mod_string = "(unknown)"; |