diff options
author | cyeh%bluemartini.com <> | 2000-09-01 06:26:51 +0000 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-09-01 06:26:51 +0000 |
commit | 3a93ee47ae7787d86a431b3463e2a3e7702a6c7f (patch) | |
tree | b37f7e7fd432ced578d5f71e4aa7aff57b1bff4c /buglist.cgi | |
parent | fix for 45583: all users get added to a group if userregexp is null in editpr... (diff) | |
download | bugzilla-3a93ee47ae7787d86a431b3463e2a3e7702a6c7f.tar.gz bugzilla-3a93ee47ae7787d86a431b3463e2a3e7702a6c7f.tar.bz2 bugzilla-3a93ee47ae7787d86a431b3463e2a3e7702a6c7f.zip |
fix for 6944: buglist: summary and whiteboard fight for space
patch by the ever present dave@intrec.com
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/buglist.cgi b/buglist.cgi index adc6c36ed..360deefff 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -979,14 +979,7 @@ if ($dotweak) { my @th; foreach my $c (@collist) { if (exists $::needquote{$c}) { - my $h = ""; - if ($::needquote{$c} == 1) { - $h .= "<TH WIDTH=100%>"; - } elsif ($::needquote{$c} == 5) { - $h .= "<TH>"; - } else { - $h .= "<TH>"; - } + my $h = "<TH>"; if (defined $::sortkey{$c}) { $h .= "<A HREF=\"buglist.cgi?$fields&order=" . url_quote($::sortkey{$c}) . "$oldorder\">$::title{$c}</A>"; } else { |