mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-25 04:11:49 +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
|
// for groups we have to include the members
|
||||||
if ($GLOBALS['egw']->accounts->get_type($user) == 'g')
|
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);
|
$members = $GLOBALS['egw']->accounts->members($user, true);
|
||||||
if(is_array($members))
|
if(is_array($members))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user