do NEVER unset $table or $db;
no need to test for isset() on $db and $table; always test with strlen() for valid $table or $db;
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
if (isset($GLOBALS['db']) && strlen($GLOBALS['db'])) { /* Can't do server export */
|
||||
if (strlen($GLOBALS['db'])) { /* Can't do server export */
|
||||
|
||||
if (isset($plugin_list)) {
|
||||
$plugin_list['xml'] = array(
|
||||
|
Reference in New Issue
Block a user