diff options
author | terry%mozilla.org <> | 1999-09-30 06:56:54 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-09-30 06:56:54 +0200 |
commit | 88237e94f95eca314e02d2fc233630be38d590fb (patch) | |
tree | 8b545ffe8dee570a29ca16278e88813c488d2d94 | |
parent | 2dff792d06f67fb76382b59a5dbe6d3ad601be89 (diff) | |
download | bugzilla-88237e94f95eca314e02d2fc233630be38d590fb.tar.gz bugzilla-88237e94f95eca314e02d2fc233630be38d590fb.tar.xz |
Patch by holger@holger.om.org (Holger Schurig) -- one more fancy header that was missing.
-rw-r--r-- | CGI.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 "<H1>Login failed.</H1>\n"; + PutHeader("Login failed"); print "The username or password you entered is not valid.\n"; print "Please click <b>Back</b> and try again.\n"; exit; |