Merge branch 'QA_4_5'
This commit is contained in:
commit
0e57191f0a
@ -3995,10 +3995,18 @@ function PMA_getDataForChangeOrCopyUser()
|
||||
if (Util::getServerType() == 'MySQL'
|
||||
&& PMA_MYSQL_INT_VERSION >= 50606
|
||||
&& PMA_MYSQL_INT_VERSION < 50706
|
||||
&& isset($password)
|
||||
&& ((isset($authentication_string)
|
||||
&& empty($password))
|
||||
|| (isset($plugin)
|
||||
&& $plugin == 'sha256_password'))
|
||||
) {
|
||||
$password = $authentication_string;
|
||||
}
|
||||
|
||||
if (PMA_Util::getServerType() == 'MariaDB'
|
||||
&& PMA_MYSQL_INT_VERSION >= 50500
|
||||
&& isset($authentication_string)
|
||||
&& empty($password)
|
||||
&& isset($plugin)
|
||||
&& $plugin == 'sha256_password'
|
||||
) {
|
||||
$password = $authentication_string;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user