mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Silence an error if user is not a member of a group
This commit is contained in:
parent
f6d2f9738f
commit
4ace9f98b2
@ -957,7 +957,7 @@
|
||||
for ($i=0; $i<count($userGroups); $i++)
|
||||
{
|
||||
/* print "Los1:".$userData["account_id"].$userGroups[$i]['account_id']." : ".$value['account_id']."<br>"; */
|
||||
if ($userGroups[$i]['account_id'] == $value['account_id'])
|
||||
if (@$userGroups[$i]['account_id'] == $value['account_id'])
|
||||
{
|
||||
$groups_select .= ' selected';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user