Fix merge conflict

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2014-11-22 09:02:53 -05:00
commit 783e28f160
2 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog
4.2.13.0 (not yet released)
- bug #4604 Query history not being deleted
- bug #4057 db/table query string parameters no longer work
4.2.12.0 (2014-11-20)
- bug #4574 Blank/white page when JavaScript disabled

View File

@ -53,6 +53,17 @@ if (! empty($_REQUEST['target'])
exit;
}
if (! empty($_REQUEST['db'])) {
$page = null;
if (! empty($_REQUEST['table'])) {
$page = $GLOBALS['cfg']['DefaultTabTable'];
} else {
$page = $GLOBALS['cfg']['DefaultTabDatabase'];
}
include $page;
exit;
}
/**
* Check if it is an ajax request to reload the recent tables list.
*/