Merge pull request #14208 from CommanderRoot/patch-1
Fix errors due to undefined variables
This commit is contained in:
commit
ea5c066d5d
@ -219,7 +219,7 @@ Core::setGlobalDbOrTable('table');
|
||||
* Store currently selected recent table.
|
||||
* Affect $GLOBALS['db'] and $GLOBALS['table']
|
||||
*/
|
||||
if (Core::isValid($_REQUEST['selected_recent_table'])) {
|
||||
if (isset($_REQUEST['selected_recent_table']) && Core::isValid($_REQUEST['selected_recent_table'])) {
|
||||
$recent_table = json_decode($_REQUEST['selected_recent_table'], true);
|
||||
|
||||
$GLOBALS['db']
|
||||
|
||||
Loading…
Reference in New Issue
Block a user