1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-07-29 22:41:11 +03:00
David Goodwin
2021-09-29 11:52:31 +01:00
parent 30163e5dca
commit 0d08ac418a

View File

@ -958,8 +958,10 @@ function _pacrypt_crypt($pw, $pw_db = '')
if ($pw_db) { if ($pw_db) {
return crypt($pw, $pw_db); return crypt($pw, $pw_db);
} }
// Throws E_NOTICE as salt is not specified. // PHP8 - we have to specify a salt here....
return crypt($pw); $salt = substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'), 0, 2);
return crypt($pw, $salt);
} }
/** /**