diff options
Diffstat (limited to 'showvotes.cgi')
-rwxr-xr-x | showvotes.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/showvotes.cgi b/showvotes.cgi index 429c71545..894baafbb 100755 --- a/showvotes.cgi +++ b/showvotes.cgi @@ -84,8 +84,7 @@ if (defined $::FORM{'bug_id'}) { if (!defined $status) { next; } - my $opened = ($status eq "NEW" || $status eq "ASSIGNED" || - $status eq "REOPENED"); + my $opened = IsOpenedState($status); my $strike = $opened ? "" : "<strike>"; my $endstrike = $opened ? "" : "</strike>"; $summary = html_quote($summary); |