mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
* Calendar: fixed groupmembers cant accept/reject group-invitations in listview via context-menu (error: failed because of insufficient rights!)
This commit is contained in:
parent
b11e7f9291
commit
68dd900091
@ -1061,8 +1061,13 @@ class calendar_boupdate extends calendar_bo
|
||||
}
|
||||
if (!is_array($event) && !($event = $this->read($event))) return false;
|
||||
|
||||
// regular user and groups
|
||||
return isset($event['participants'][$uid]) && $this->check_perms(EGW_ACL_EDIT,0,$uid);
|
||||
// regular user and groups (need to check memberships too)
|
||||
if (!isset($event['participants'][$uid]))
|
||||
{
|
||||
$memberships = $GLOBALS['egw']->accounts->memberships($uid,true);
|
||||
}
|
||||
$memberships[] = $uid;
|
||||
return array_intersect($memberships, array_keys($event['participants'])) && $this->check_perms(EGW_ACL_EDIT,0,$uid);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user