Small change to only allow read perms for a group, when viewing calendar events.

This commit is contained in:
skeeter 2001-10-23 11:10:31 +00:00
parent b8c8747026
commit 26fbf18c3f

View File

@ -644,7 +644,10 @@
{
$grants[$grantor] = 0;
}
$grants[$grantor] |= $rights;
if(!!($rights & PHPGW_ACL_READ))
{
$grants[$grantor] = PHPGW_ACL_READ;
}
}
while(list($nul,$grantors) = each($accounts[$grantor]))
{