fix PHP 8.0 TypeError: Unsupported operand types: int | array

This commit is contained in:
Ralf Becker 2021-11-20 08:40:35 +01:00
parent 5aed6918bd
commit 8020301a84

View File

@ -1746,7 +1746,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)