Module: tools Branch: master Commit: 9c006943786ec6b036310794d48e3f1472e699a4 URL: http://source.winehq.org/git/tools.git/?a=commit;h=9c006943786ec6b036310794d...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Sep 19 12:28:14 2008 +0200
winetest: Don't wrap the date in the index table.
---
winetest/build-index | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/winetest/build-index b/winetest/build-index index e282277..9d55f28 100755 --- a/winetest/build-index +++ b/winetest/build-index @@ -225,7 +225,7 @@ foreach my $build (@builds) { printf OUT " <tr><td class="build"><a href="%s" title="%s">%s</a></td>\n", $build->{name}, $build->{name}, substr($build->{name},0,12); my @date = gmtime($build->{date}); - printf OUT " <td class="date">%02d-%s-%04d %02d:%02d</td>", $date[3], $months[$date[4]], $date[5] + 1900, $date[2], $date[1], $date[0]; + printf OUT " <td class="date">%02d-%s-%04d %02d:%02d</td>", $date[3], $months[$date[4]], $date[5] + 1900, $date[2], $date[1], $date[0]; my ($total_runs, $total_tests, $total_errors, $total_todos); foreach my $ver (@groups) {