Merge pull request #1624 from madhuracj/bug4754
Bug #4754 pMA DB not detected properly
This commit is contained in:
commit
846311e7ea
@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug Missing sort icons in monitor
|
||||
- bug #4805 Inline edit broken when using functions in query
|
||||
- bug #4821 Timed-out import fails to restart when file represented
|
||||
- bug #4754 pMA DB not detected properly
|
||||
|
||||
4.4.0.0 (not yet released)
|
||||
+ rfe #1553 InnoDB presently supports one FULLTEXT index creation at a time
|
||||
|
||||
@ -1184,5 +1184,13 @@ if (! defined('PMA_MINIMUM_COMMON')
|
||||
PMA_fixPMATables($GLOBALS['db'], false);
|
||||
}
|
||||
}
|
||||
$cfgRelation = PMA_getRelationsParam();
|
||||
if (empty($cfgRelation['db'])) {
|
||||
foreach ($GLOBALS['pma']->databases as $database) {
|
||||
if ($database == 'phpmyadmin') {
|
||||
PMA_fixPMATables($database, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user