mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-24 20:01:36 +02:00
Calendar: Fix group invitations were left out of "not rejected" filter
This commit is contained in:
parent
a034a1407e
commit
84c14710db
@ -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…
x
Reference in New Issue
Block a user