diff options
Diffstat (limited to 'autobuild')
-rw-r--r-- | autobuild/results.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autobuild/results.php b/autobuild/results.php index f0b0264..7daecd8 100644 --- a/autobuild/results.php +++ b/autobuild/results.php @@ -342,7 +342,7 @@ if ($all_attrs) { } echo "<h2>Failed builds ($nb_failed/$nb_tried)</h2>\n"; echo "<table class=\"failureTable\" >\n"; -echo "<tr><th></th><th>Status</th><th>Failure type</th><th>Build step</th><th></th><th>Languages</th><th>Detected errors</th></tr>\n"; +echo "<tr><th></th><th>Maintainer</th><th>Status</th><th>Failure type</th><th>Build step</th><th></th><th>Languages</th><th>Detected errors</th></tr>\n"; foreach ($failure as $rpm => $error) { $parsed = parse_package($rpm); $history_link = '<a href="history.php?package='.$parsed['package'].'">History</a>'; @@ -424,7 +424,7 @@ foreach ($failure as $rpm => $error) { } else { echo "<td>$rpm</td>"; } - echo "<td>$status_html</td><td>$error_html</td><td>$stage</td><td>$history_link</td><td>$langs</td><td>$errors</td></tr>\n"; + echo "<td>$maintainer</td><td>$status_html</td><td>$error_html</td><td>$stage</td><td>$history_link</td><td>$langs</td><td>$errors</td></tr>\n"; } $db->close(); ?> |