do not connect twice if no controluser is defined, no controluser query should affect user connection (no DB change)

This commit is contained in:
Sebastian Mendel
2007-10-16 12:52:36 +00:00
parent 107fc46ad9
commit 177ea6c5d5

View File

@@ -832,8 +832,6 @@ if (! defined('PMA_MINIMUM_COMMON')) {
unset($allowDeny_forbidden); //Clean up after you! unset($allowDeny_forbidden); //Clean up after you!
} }
$bkp_track_err = @ini_set('track_errors', 1);
// Try to connect MySQL with the control user profile (will be used to // Try to connect MySQL with the control user profile (will be used to
// get the privileges list for the current user but the true user link // get the privileges list for the current user but the true user link
// must be open after this one so it would be default one for all the // must be open after this one so it would be default one for all the
@@ -843,20 +841,14 @@ if (! defined('PMA_MINIMUM_COMMON')) {
$controllink = PMA_DBI_connect($cfg['Server']['controluser'], $controllink = PMA_DBI_connect($cfg['Server']['controluser'],
$cfg['Server']['controlpass'], true); $cfg['Server']['controlpass'], true);
} }
if (! $controllink) {
$controllink = PMA_DBI_connect($cfg['Server']['user'],
$cfg['Server']['password'], true);
} // end if ... else
// Pass #1 of DB-Config to read in master level DB-Config will go here
// Robbat2 - May 11, 2002
// Connects to the server (validates user's login) // Connects to the server (validates user's login)
$userlink = PMA_DBI_connect($cfg['Server']['user'], $userlink = PMA_DBI_connect($cfg['Server']['user'],
$cfg['Server']['password'], false); $cfg['Server']['password'], false);
// Pass #2 of DB-Config to read in user level DB-Config will go here if (! $controllink) {
// Robbat2 - May 11, 2002 $controllink = $userlink;
}
/** /**
* with phpMyAdmin 3 we support MySQL >=5 * with phpMyAdmin 3 we support MySQL >=5
@@ -867,9 +859,6 @@ if (! defined('PMA_MINIMUM_COMMON')) {
PMA_fatalError('strUpgrade', array('MySQL', '5.0.15')); PMA_fatalError('strUpgrade', array('MySQL', '5.0.15'));
} }
@ini_set('track_errors', $bkp_track_err);
unset($bkp_track_err);
/** /**
* SQL Parser code * SQL Parser code
*/ */