]> git.mxchange.org Git - mailer.git/commitdiff
Install fix
authorRoland Häder <roland@mxchange.org>
Thu, 15 May 2008 20:01:11 +0000 (20:01 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 15 May 2008 20:01:11 +0000 (20:01 +0000)
inc/modules/admin.php

index c364ae283a72072f29916304994b0c6fae4a2d21..c0e1fdf48a4c581180ac6f9475013f3f86d9121d 100644 (file)
@@ -56,11 +56,8 @@ if (!isBooleanConstantAndTrue('admin_registered')) {
        // Admin is not registered so we have to inform the user
        if ((isset($_POST['ok'])) && ((empty($_POST['login'])) || (empty($_POST['pass'])) || (strlen($_POST['pass']) < 4))) $_POST['ok'] = "***";
        if ((isset($_POST['ok'])) && ($_POST['ok'] != "***")) {
-               // Hash the password with our new generateHash() function
-               $hashedPass = generateHash($_POST['pass']);
-
-               // If the password has not been hashed we have to fall-back to md5()
-               if ($hashedPass == $_POST['pass']) $hashedPass = md5($hashedPass);
+               // Hash the password with the old function because we are here in install mode
+               $hashedPass = md5($hashedPass);
 
                // Do registration
                $ret = REGISTER_ADMIN($_POST['login'], $hashedPass);