andryyy 2020-12-03 16:43:15 +01:00
commit fa979456a7
1 changed files with 6 additions and 1 deletions

View File

@ -1054,7 +1054,12 @@ function mailbox($_action, $_type, $_data = null, $_extra = null) {
); );
return false; return false;
} }
$password_hashed = hash_password($password); // support pre hashed passwords
if(preg_match('/^{SSHA256}|{SHA512-CRYPT}|{SSHA512}|{MD5-CRYPT}|{PLAIN-MD5}/i', $password)) {
$password_hashed = $password;
} else {
$password_hashed = hash_password($password);
}
} }
else { else {
$_SESSION['return'][] = array( $_SESSION['return'][] = array(