Commit 2911603c authored by terry%mozilla.org's avatar terry%mozilla.org

Fix perl warning.

parent db3478cb
...@@ -80,6 +80,9 @@ if (defined $::FORM{'bug_id'}) { ...@@ -80,6 +80,9 @@ if (defined $::FORM{'bug_id'}) {
print "<tr><th>$product</th></tr>"; print "<tr><th>$product</th></tr>";
while (MoreSQLData()) { while (MoreSQLData()) {
my ($id, $count, $summary, $status) = (FetchSQLData()); my ($id, $count, $summary, $status) = (FetchSQLData());
if (!defined $status) {
next;
}
my $opened = ($status eq "NEW" || $status eq "ASSIGNED" || my $opened = ($status eq "NEW" || $status eq "ASSIGNED" ||
$status eq "REOPENED"); $status eq "REOPENED");
my $strike = $opened ? "" : "<strike>"; my $strike = $opened ? "" : "<strike>";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment