]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 352355: Cannot log in on a fresh installation - Patch by Frédéric Buclin <LpSolit...
authorlpsolit%gmail.com <>
Tue, 12 Sep 2006 23:17:12 +0000 (23:17 +0000)
committerlpsolit%gmail.com <>
Tue, 12 Sep 2006 23:17:12 +0000 (23:17 +0000)
Bugzilla/Install.pm

index 43981da02ddb5339fd1d3018d989f4a31c224858..9c23491997fe7a95050a328d7a8a7e5d711327d9 100644 (file)
@@ -192,8 +192,10 @@ sub create_admin {
 
         print get_text('install_admin_get_password') . ' ';
         $password = <STDIN>;
+        chomp $password;
         print "\n", get_text('install_admin_get_password2') . ' ';
         my $pass2 = <STDIN>;
+        chomp $pass2;
         eval { validate_password($password, $pass2); };
         if ($@) {
             print "\n$@\n";