[core] Fix broken cleanup of $_GET

This commit is contained in:
Herman van Rink
2009-12-28 15:50:36 +00:00
parent 2eba839c33
commit b2dfe50969
2 changed files with 2 additions and 1 deletions

View File

@@ -61,6 +61,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
thanks to Greg Roach - fisharebest
- patch #2918831 [export] Missing backquotes on reserved words,
thanks to Virsacer - virsacer
- [core] Fix broken cleanup of $_GET
3.2.4.0 (2009-12-02)
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status

View File

@@ -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]);
}
}