* Calendar: fixed typo in merge, denying implicit participants rights eg. required to accept a meeting

This commit is contained in:
Ralf Becker 2011-08-03 13:22:49 +00:00
parent ef559e486a
commit d8ecd9af9e

View File

@ -1133,7 +1133,7 @@ class calendar_bo
if ($uid == $this->user || $uid < 0 && in_array($this->user,$GLOBALS['egw']->accounts->members($uid,true)))
{
// if we are a participant, we have an implicite FREEBUSY, READ and PRIVAT grant
$grant |= EGW_ACL_FREEBUSY | EGW_ACL_READ | EGW_ACL_PRIVATE;
$grants |= EGW_ACL_FREEBUSY | EGW_ACL_READ | EGW_ACL_PRIVATE;
break;
}
elseif ($this->grants[$uid] & EGW_ACL_READ)