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:
authorHerman van Rink <rink@initfour.nl>2009-12-28 18:50:36 +0300
committerHerman van Rink <rink@initfour.nl>2009-12-28 18:50:36 +0300
commitb2dfe50969b9011dd4a4692bd86e17d53acc14e8 (patch)
tree90b2a19553d084ec3ac4adeb78d91eb5889f8f90 /index.php
parent2eba839c338e3513d3dc61496700e6fdbcf94a50 (diff)
[core] Fix broken cleanup of $_GET
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 837e0ac0dc..ef0f8304a8 100644
--- a/index.php
+++ b/index.php
@@ -67,7 +67,7 @@ $drops = array('lang', 'server', 'convcharset', 'collation_connection',
'db', 'table');
foreach ($drops as $each_drop) {
- if (! array_key_exists($each_drop, $_GET)) {
+ if (array_key_exists($each_drop, $_GET)) {
unset($_GET[$each_drop]);
}
}