mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-05 04:50:13 +01:00
fix PHP 8.0 TypeError: Unsupported operand types: int | array
This commit is contained in:
parent
645d3246da
commit
b4676ae7e2
@ -1739,7 +1739,7 @@ class calendar_boupdate extends calendar_bo
|
||||
static $memberships=null;
|
||||
if (is_null($memberships))
|
||||
{
|
||||
$memberships = $GLOBALS['egw']->accounts->memberships($user,true);
|
||||
$memberships = $GLOBALS['egw']->accounts->memberships($user,true) ?: [];
|
||||
$memberships[] = $user;
|
||||
}
|
||||
foreach($cat_rights as $uid => $value)
|
||||
|
Loading…
Reference in New Issue
Block a user