Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate committed Sep 2, 2015
2 parents f07d4c3 + 4fe8c5f commit a2e928d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/server_privileges.lib.php
Expand Up @@ -1801,11 +1801,11 @@ function PMA_getCurrentAuthenticationPlugin(
if (isset($row) && $row && ! empty($row['plugin'])) {
$authentication_plugin = $row['plugin'];
}
} else {
} elseif (PMA_MYSQL_INT_VERSION >= 50702) {
$row = $GLOBALS['dbi']->fetchSingleRow(
'SELECT @@default_authentication_plugin'
);
$authentication_plugin = $row['Value'];
$authentication_plugin = $row['@@default_authentication_plugin'];
}

return $authentication_plugin;
Expand Down

0 comments on commit a2e928d

Please sign in to comment.