mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Small change to only allow read perms for a group, when viewing calendar events.
This commit is contained in:
parent
b8c8747026
commit
26fbf18c3f
@ -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]))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user