diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-05-17 14:13:51 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-05-17 14:13:51 +0000 |
| commit | 64afb48f6c13219a8b64715205f795331f43eea1 (patch) | |
| tree | 0ec7645e3fe0da208f9e86891da238bc568b0743 | |
| parent | d9bc08dd8146243db6896f1117b62f94c745f389 (diff) | |
Notes
| -rw-r--r-- | tools/tools/tinderbox/www/index.cgi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/tools/tinderbox/www/index.cgi b/tools/tools/tinderbox/www/index.cgi index 12ad03d804f7..d9d4de2aa549 100644 --- a/tools/tools/tinderbox/www/index.cgi +++ b/tools/tools/tinderbox/www/index.cgi @@ -109,18 +109,18 @@ MAIN:{ my @stat = stat("$log.brief"); my $class = success("$log.brief") ? "ok" : "fail"; $links .= "<span class=\"$class\">" . - strftime("%Y-%m-%d %H:%M", gmtime($stat[9])) . + strftime("%Y-%m-%d %H:%M", gmtime($stat[9])) . "</span><br />"; - my $size = sprintf("[%.1f kB]", $stat[7] / 1024); + my $size = sprintf("[%.1f kB]", $stat[7] / 1024); $links .= " <span class=\"tiny\">" . - "<a href=\"$log.brief\">summary $size</a>" . + "<a href=\"$log.brief\">summary $size</a>" . "</span><br />"; } if (-f "$log.full") { my @stat = stat("$log.full"); - my $size = sprintf("[%.1f MB]", $stat[7] / 1048576); + my $size = sprintf("[%.1f MB]", $stat[7] / 1048576); $links .= " <span class=\"tiny\">" . - "<a href=\"$log.full\">full log $size</a>" . + "<a href=\"$log.full\">full log $size</a>" . "</span><br />"; } if ($links eq "") { |
