mirror of
https://github.com/friendica/friendica
synced 2025-03-24 13:24:02 +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…
Add table
Reference in a new issue