From 8ccd410a484961239fcabf9ee41c503e193bc4c6 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Wed, 29 Sep 1999 21:56:54 +0000 Subject: [PATCH] Patch by holger@holger.om.org (Holger Schurig) -- one more fancy header that was missing. --- webtools/bugzilla/CGI.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/CGI.pl b/webtools/bugzilla/CGI.pl index 328b4d9ea5cc..2b137168581d 100644 --- a/webtools/bugzilla/CGI.pl +++ b/webtools/bugzilla/CGI.pl @@ -396,7 +396,7 @@ sub confirm_login { my $enteredcryptpwd = crypt($enteredpwd, substr($realcryptpwd, 0, 2)); if ($realcryptpwd eq "" || $enteredcryptpwd ne $realcryptpwd) { print "Content-type: text/html\n\n"; - print "

Login failed.

\n"; + PutHeader("Login failed"); print "The username or password you entered is not valid.\n"; print "Please click Back and try again.\n"; exit;