From: myk%mozilla.org <> Date: Sat, 6 Oct 2001 07:03:00 +0000 (+0000) Subject: Fix for bug 76714: correctly nests the FORM and TABLE elements. X-Git-Tag: bugzilla-2.14.1~108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcb0fb5b9ed21bdaae25b4ba77d847820aafb882;p=thirdparty%2Fbugzilla.git Fix for bug 76714: correctly nests the FORM and TABLE elements. Patch by Gerv Markham . r=myk@mozilla.org, no second review needed. --- diff --git a/CGI.pl b/CGI.pl index 67cca6f330..ee6dbb4c76 100644 --- a/CGI.pl +++ b/CGI.pl @@ -1357,7 +1357,7 @@ Actions: my $mybugstemplate = Param("mybugstemplate"); my %substs; $substs{'userid'} = url_quote($::COOKIE{"Bugzilla_login"}); - $html .= ""; + $html .= ""; $html .= "Preset Queries: "; $html .= "\n"; if ($mybugslink) { @@ -1374,7 +1374,7 @@ Actions: $html .= "$name"; } - $html .= "\n"; + $html .= "\n"; } else { $html .= " \n"; $html .= @@ -1383,8 +1383,8 @@ Actions: " | Log in"; $html .= ""; } - $html .= "\n"; $html .= ""; + $html .= "\n"; return $html; }