mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 01:29:05 +01:00
Calendar: Fix group invitations were left out of "not rejected" filter
This commit is contained in:
parent
d567897e9d
commit
0b5daa0fb6
@ -507,7 +507,13 @@ class calendar_bo
|
||||
// for groups we have to include the members
|
||||
if ($GLOBALS['egw']->accounts->get_type($user) == 'g')
|
||||
{
|
||||
if ($no_enum_groups) continue;
|
||||
// Include the group itself to catch group invitations
|
||||
$users[] = $user;
|
||||
|
||||
if($no_enum_groups)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
$members = $GLOBALS['egw']->accounts->members($user, true);
|
||||
if(is_array($members))
|
||||
|
Loading…
Reference in New Issue
Block a user