diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -191,6 +191,12 @@ if ($total > 0) { : sprintf('<span class="status-box"></span> %s %s', $typestr, $show_time); + $failed_arches = array_keys($p['status']['fail']); + if (!empty($failed_arches)) { + sort($failed_arches); + $s .= '<span class="failure"><span class="status-box"></span> ' . join(' ', $failed_arches) . '</span>'; + } + $s .= '</td></tr>'; } echo sprintf('<li><p><span class="figure">%d</span> packages submitted in the past %d hours:</p>', $total, $max_modified * 24); |