From 0e0fd005d7940dcfdc6cd00f32d52c1b2c8e5ece Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Tue, 7 Mar 2000 17:32:51 +0000 Subject: [PATCH] Patch by Olaf Krische -- Fixed HTML typos. --- webtools/bugzilla/CGI.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webtools/bugzilla/CGI.pl b/webtools/bugzilla/CGI.pl index e70fd3f87086..8f80826d2d26 100644 --- a/webtools/bugzilla/CGI.pl +++ b/webtools/bugzilla/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; }