This commit is contained in:
Hugues Peccatte 2014-11-22 22:36:31 +01:00
commit f0b18d5028
2 changed files with 14 additions and 0 deletions

View File

@ -69,6 +69,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

@ -56,6 +56,19 @@ if (! empty($_REQUEST['target'])
if (isset($_REQUEST['ajax_request']) && ! empty($_REQUEST['access_time'])) {
exit;
}
// See FAQ 1.34
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.
*/