You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-07-29 22:41:11 +03:00
This commit is contained in:
@ -958,8 +958,10 @@ function _pacrypt_crypt($pw, $pw_db = '')
|
||||
if ($pw_db) {
|
||||
return crypt($pw, $pw_db);
|
||||
}
|
||||
// Throws E_NOTICE as salt is not specified.
|
||||
return crypt($pw);
|
||||
// PHP8 - we have to specify a salt here....
|
||||
$salt = substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'), 0, 2);
|
||||
|
||||
return crypt($pw, $salt);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user