mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-10 16:08:34 +01:00
Check to make sure rows is set before trying to unset a sub-index
This commit is contained in:
parent
af918a2945
commit
bb01196183
@ -540,7 +540,7 @@ class infolog_ui
|
|||||||
}
|
}
|
||||||
$values['msg'] = $msg;
|
$values['msg'] = $msg;
|
||||||
}
|
}
|
||||||
unset($values['nm']['rows']['checked']); // Can cause problems lower, no longer needed
|
if(isset($values['nm']['rows'])) unset($values['nm']['rows']['checked']); // Can cause problems lower, no longer needed
|
||||||
if (!$action)
|
if (!$action)
|
||||||
{
|
{
|
||||||
$action = $values['action'] ? $values['action'] : get_var('action',array('POST','GET'));
|
$action = $values['action'] ? $values['action'] : get_var('action',array('POST','GET'));
|
||||||
|
Loading…
Reference in New Issue
Block a user