synchronize did not work when tracking was enabled

This commit is contained in:
Marc Delisle
2009-10-18 12:32:30 +00:00
parent 27e13bfb1e
commit 40f66a3422
2 changed files with 13 additions and 0 deletions

View File

@@ -858,6 +858,11 @@ class PMA_Tracker
// Get database name
$dbname = trim($GLOBALS['db'], '`');
// $dbname can be empty, for example when coming from Synchronize
// and this is a query for the remote server
if (empty($dbname)) {
return false;
}
// If we found a valid statement
if(isset($result['identifier']))