Commit cc842c06 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 352355: Cannot log in on a fresh installation - Patch by Frédéric Buclin…

Bug 352355: Cannot log in on a fresh installation - Patch by Frédéric Buclin <LpSolit@gmail.com> r=bkor a=justdave
parent 3332dda2
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment