diff options
author | Greg Hendricks <ghendricks@novell.com> | 2010-02-18 20:22:25 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-02-18 20:22:25 +0100 |
commit | 181bfd0cea1992fbf92d463fb9ef2a2b2ae517c8 (patch) | |
tree | 4d013cf97d1ef0124d51fcfe14bbd58449a66895 /report.cgi | |
parent | Bug 546763: Extra spaces when copying bug header (diff) | |
download | bugzilla-181bfd0cea1992fbf92d463fb9ef2a2b2ae517c8.tar.gz bugzilla-181bfd0cea1992fbf92d463fb9ef2a2b2ae517c8.tar.bz2 bugzilla-181bfd0cea1992fbf92d463fb9ef2a2b2ae517c8.zip |
Bug 529573: Tabular reports do not show empty resolution
r/a=mkanat
Diffstat (limited to 'report.cgi')
-rwxr-xr-x | report.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/report.cgi b/report.cgi index 100c76e90..33d46675f 100755 --- a/report.cgi +++ b/report.cgi @@ -335,6 +335,7 @@ sub get_names { my @select_fields = Bugzilla->get_fields({ is_select => 1 }); foreach my $field (@select_fields) { my @names = map($_->name, @{$field->legal_values}); + unshift @names, ' ' if $field->name eq 'resolution'; $fields{$field->name} = \@names; } my $field_list = $fields{$field}; |