mirror of
https://github.com/friendica/friendica
synced 2024-11-11 05:02:54 +00:00
Fix notice message when $return is undefined in Core\ACL
This commit is contained in:
parent
cd4edb1038
commit
1a81ed8616
1 changed files with 1 additions and 1 deletions
|
@ -360,6 +360,6 @@ class ACL extends BaseObject
|
|||
}
|
||||
}
|
||||
|
||||
return defaults($return, []);
|
||||
return $return ?? [];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue