From: terry%mozilla.org <> Date: Wed, 8 Mar 2000 01:32:51 +0000 (+0000) Subject: Patch by Olaf Krische -- Fixed HTML typos. X-Git-Tag: bugzilla-2.12~364 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d587a9fa5bb0e2733770fb36e4c1b40af31e82a9;p=thirdparty%2Fbugzilla.git Patch by Olaf Krische -- Fixed HTML typos. --- diff --git a/CGI.pl b/CGI.pl index e70fd3f870..8f80826d2d 100644 --- a/CGI.pl +++ b/CGI.pl @@ -299,7 +299,7 @@ sub make_checkboxes { $capitalized =~ tr/A-Z/a-z/; $capitalized =~ s/^(.?)(.*)/\u$1$2/; if ($isregexp ? $item =~ $default : $default eq $item) { - $popup .= "$capitalized
"; + $popup .= "$capitalized
"; $found = 1; } else { $popup .= "$capitalized
"; @@ -308,7 +308,7 @@ sub make_checkboxes { } } if (!$found && $default ne "") { - $popup .= "$default"; + $popup .= "$default"; } return $popup; }