Merge branch 'master' of https://github.com/phpmyadmin/phpmyadmin
This commit is contained in:
commit
f0b18d5028
@ -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
|
||||
|
||||
13
index.php
13
index.php
@ -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.
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user