mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Fix error in PHP 8.0
PHP Exception: TypeError #0 "in_array(): Argument #2 ($haystack) must be of type array, bool given" in modules/ncenterlite/ncenterlite.controller.php on line 600
This commit is contained in:
parent
df9e990fdc
commit
d9408da729
1 changed files with 1 additions and 1 deletions
|
|
@ -509,7 +509,7 @@ class ncenterliteController extends ncenterlite
|
|||
{
|
||||
$obj->admin_list = $admin_list;
|
||||
}
|
||||
$notify_member_srls = $this->insertMentionByTargets($mention_targets, $obj, $module_info, $is_anonymous, $this->_TYPE_COMMENT);
|
||||
$notify_member_srls = $this->insertMentionByTargets($mention_targets, $obj, $module_info, $is_anonymous, $this->_TYPE_COMMENT) ?: [];
|
||||
}
|
||||
|
||||
if(!isset($config->use['comment']))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue