Skip to content

Commit

Permalink
bug #4088 MySQL server version at index.php incorrect w/ controlhost
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuracj committed Sep 15, 2013
1 parent 80afe42 commit 5111eb7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog
- bug #4091 Insert ignore option does not work
- bug #4090 Downloading BLOB downloads page template
- bug #4092 Clicking on table name in view of information_schema redirects to wrong page
- bug #4088 MySQL server version at index.php incorrect w/ controlhost

4.0.6.0 (2013-09-05)
- bug #4036 Call to undefined function mb_detect_encoding (clarify the doc)
Expand Down
3 changes: 3 additions & 0 deletions libraries/database_interface.lib.php
Expand Up @@ -1472,6 +1472,9 @@ function PMA_DBI_get_variable($var, $type = PMA_DBI_GETVAR_SESSION, $link = null
*/
function PMA_DBI_postConnect($link, $is_controluser = false)
{
if ($is_controluser) {
return;
}
if (! defined('PMA_MYSQL_INT_VERSION')) {
if (PMA_Util::cacheExists('PMA_MYSQL_INT_VERSION', true)) {
define(
Expand Down

0 comments on commit 5111eb7

Please sign in to comment.