Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2017-06-13 10:39:23 +0300
committerMichal Čihař <michal@cihar.com>2017-06-13 10:39:23 +0300
commitfc9140c0c5ae58f9c78d3872b95453d083ac7122 (patch)
treebe1d1da7e13bd538d0225f7338819cb52e843ac2 /db_structure.php
parent6c376de12ace677fef2197d4b1f9cd3cd10755ca (diff)
Remove _url_query attribute from DatabaseStructureController.php
It was used only in two locations and in both of them the different URL query was constructed, so it's better to contruct new queries directly. Fixes #13373 Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'db_structure.php')
-rw-r--r--db_structure.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/db_structure.php b/db_structure.php
index 2bb9ec146a..cfcb01d404 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -29,7 +29,6 @@ $container->alias('response', 'PMA\libraries\Response');
/* Define dependencies for the concerned controller */
$dependency_definitions = array(
'db' => $db,
- 'url_query' => &$GLOBALS['url_query'],
);
/** @var DatabaseStructureController $controller */