diff options
author | cyeh%bluemartini.com <> | 2000-09-01 08:26:51 +0200 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-09-01 08:26:51 +0200 |
commit | 3a93ee47ae7787d86a431b3463e2a3e7702a6c7f (patch) | |
tree | b37f7e7fd432ced578d5f71e4aa7aff57b1bff4c | |
parent | 323763170be72166fd3b0e97f302d0966f9a7b8f (diff) | |
download | bugzilla-3a93ee47ae7787d86a431b3463e2a3e7702a6c7f.tar.gz bugzilla-3a93ee47ae7787d86a431b3463e2a3e7702a6c7f.tar.xz |
fix for 6944: buglist: summary and whiteboard fight for space
patch by the ever present dave@intrec.com
-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 { |