From 365c07a3bfb3d5008d10352778cc810b8bb6b034 Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Fri, 11 Dec 1998 03:41:30 +0000 Subject: Old values for the column-header-cookie could cause problems when trying to tweak several bugs at once. --- buglist.cgi | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'buglist.cgi') diff --git a/buglist.cgi b/buglist.cgi index 8439ccbbd..f2979e21c 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -339,7 +339,7 @@ my $tablestart = " foreach my $c (@collist) { if (exists $::needquote{$c}) { if ($::needquote{$c}) { - $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 = "$value"; -- cgit v1.2.3-24-g4f1b