diff --git a/calendar/inc/class.calendar_bo.inc.php b/calendar/inc/class.calendar_bo.inc.php index 90d36147f7..dd90f66073 100644 --- a/calendar/inc/class.calendar_bo.inc.php +++ b/calendar/inc/class.calendar_bo.inc.php @@ -1090,12 +1090,8 @@ class calendar_bo { if ($uid == $this->user || $uid < 0 && in_array($this->user,$GLOBALS['egw']->accounts->members($uid,true))) { - $grants |= EGW_ACL_FREEBUSY; - // if we are a participant, we have an implicite READ and PRIVAT grant - // exept the group gives its members only EGW_ACL_FREEBUSY and the participant is not the current user - if ($this->grants[$uid] == EGW_ACL_FREEBUSY && $uid != $this->user) continue; - - $grants |= EGW_ACL_READ | EGW_ACL_PRIVATE; + // if we are a participant, we have an implicite FREEBUSY, READ and PRIVAT grant + $grant |= EGW_ACL_FREEBUSY | EGW_ACL_READ | EGW_ACL_PRIVATE; break; } elseif ($this->grants[$uid] & EGW_ACL_READ)