From: terry%netscape.com <> Date: Fri, 11 Dec 1998 03:41:30 +0000 (+0000) Subject: Old values for the column-header-cookie could cause problems when trying to tweak... X-Git-Tag: bugzilla-2.2~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=365c07a3bfb3d5008d10352778cc810b8bb6b034;p=thirdparty%2Fbugzilla.git Old values for the column-header-cookie could cause problems when trying to tweak several bugs at once. --- diff --git a/buglist.cgi b/buglist.cgi index 8439ccbbd2..f2979e21c2 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -339,7 +339,7 @@ my $tablestart = "
"; + $tablestart .= " | "; } else { $tablestart .= " | ";
}
@@ -377,10 +377,13 @@ while (@row = FetchSQLData()) {
pnl "";
pnl "$bug_id ";
foreach my $c (@collist) {
+ if (!exists $::needquote{$c}) {
+ next;
+ }
my $value = shift @row;
my $nowrap = "";
- if (exists $::needquote{$c} && $::needquote{$c}) {
+ if ($::needquote{$c}) {
$value = html_quote($value);
} else {
$value = " |
---|