This commit is contained in:
terry%mozilla.org 1999-10-20 14:12:43 +00:00
Родитель 427e787189
Коммит 83ee8e24e6
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -80,6 +80,9 @@ if (defined $::FORM{'bug_id'}) {
print "<tr><th>$product</th></tr>";
while (MoreSQLData()) {
my ($id, $count, $summary, $status) = (FetchSQLData());
if (!defined $status) {
next;
}
my $opened = ($status eq "NEW" || $status eq "ASSIGNED" ||
$status eq "REOPENED");
my $strike = $opened ? "" : "<strike>";