Merge pull request #12036 from KeldorDE/percona_server

Fix for wrong mysql_upgrade message on Users tab with Percona Server 5.7
This commit is contained in:
Madhura Jayaratne 2016-02-26 13:21:40 +11:00
commit 4fb120f78d

View File

@ -4739,7 +4739,8 @@ function PMA_getHtmlForUserOverview($pmaThemeImage, $text_dir)
. '</h2>' . "\n";
$password_column = 'Password';
if (Util::getServerType() == 'MySQL'
$server_type = Util::getServerType();
if (($server_type == 'MySQL' || $server_type == 'Percona Server')
&& PMA_MYSQL_INT_VERSION >= 50706
) {
$password_column = 'authentication_string';