From cc842c06f8dd3d3f610351f4f9f6666850a3500b Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 12 Sep 2006 23:17:12 +0000 Subject: Bug 352355: Cannot log in on a fresh installation - Patch by Frédéric Buclin r=bkor a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Install.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Bugzilla') diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm index 43981da02..9c2349199 100644 --- a/Bugzilla/Install.pm +++ b/Bugzilla/Install.pm @@ -192,8 +192,10 @@ sub create_admin { print get_text('install_admin_get_password') . ' '; $password = ; + chomp $password; print "\n", get_text('install_admin_get_password2') . ' '; my $pass2 = ; + chomp $pass2; eval { validate_password($password, $pass2); }; if ($@) { print "\n$@\n"; -- cgit v1.2.3-24-g4f1b