diff options
author | des <des@FreeBSD.org> | 2003-10-10 07:11:54 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-10-10 07:11:54 +0000 |
commit | 5b32d860e225910c85e22359738efcd8dabe1b1e (patch) | |
tree | 6af46c56f5353474bfa43611b65540a1d96fa5db /tools | |
parent | 741ad65a3396d065e043dc0112dd8ae35a2c4af6 (diff) | |
download | FreeBSD-src-5b32d860e225910c85e22359738efcd8dabe1b1e.zip FreeBSD-src-5b32d860e225910c85e22359738efcd8dabe1b1e.tar.gz |
Allow wrapping between the date and the time. s/GMT/UTC/.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tinderbox/www/index.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tools/tinderbox/www/index.cgi b/tools/tools/tinderbox/www/index.cgi index 5152ff3..4cd2ae4 100644 --- a/tools/tools/tinderbox/www/index.cgi +++ b/tools/tools/tinderbox/www/index.cgi @@ -115,7 +115,7 @@ MAIN:{ my @stat = stat("$DIR/$log.brief"); my $class = success("$DIR/$log.brief") ? "ok" : "fail"; $links .= "<span class=\"$class\">" . - strftime("%Y-%m-%d %H:%M", gmtime($stat[9])) . + strftime("%Y-%m-%d %H:%M UTC", gmtime($stat[9])) . "</span><br />"; my $size = sprintf("[%.1f kB]", $stat[7] / 1024); $links .= " <span class=\"tiny\">" . @@ -141,7 +141,7 @@ MAIN:{ if $have_logs > 0; } } - my $date = strftime("%Y-%m-%d %H:%M GMT", gmtime()); + my $date = strftime("%Y-%m-%d %H:%M UTC", gmtime()); print " </table> <p class=\"update\">Last updated: $date</p> <p> |