[core] Fix broken cleanup of $_GET
This commit is contained in:
@@ -18,6 +18,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
thanks to Greg Roach - fisharebest
|
thanks to Greg Roach - fisharebest
|
||||||
- patch #2918831 [export] Missing backquotes on reserved words,
|
- patch #2918831 [export] Missing backquotes on reserved words,
|
||||||
thanks to Virsacer - virsacer
|
thanks to Virsacer - virsacer
|
||||||
|
- [core] Fix broken cleanup of $_GET
|
||||||
|
|
||||||
3.2.4.0 (2009-12-02)
|
3.2.4.0 (2009-12-02)
|
||||||
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status
|
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status
|
||||||
|
@@ -67,7 +67,7 @@ $drops = array('lang', 'server', 'convcharset', 'collation_connection',
|
|||||||
'db', 'table');
|
'db', 'table');
|
||||||
|
|
||||||
foreach ($drops as $each_drop) {
|
foreach ($drops as $each_drop) {
|
||||||
if (! array_key_exists($each_drop, $_GET)) {
|
if (array_key_exists($each_drop, $_GET)) {
|
||||||
unset($_GET[$each_drop]);
|
unset($_GET[$each_drop]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user