change all timestamps to display utc

This commit is contained in:
simo 2006-01-02 08:21:58 +00:00
parent f47b09de42
commit d534bb1535
2 changed files with 6 additions and 6 deletions

View file

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