mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Fix warning in PHP8.0
This commit is contained in:
parent
ce694e179c
commit
c7f84a178d
4 changed files with 9 additions and 5 deletions
|
|
@ -465,7 +465,11 @@ class boardView extends board
|
|||
$args->module_srl = $this->include_modules ?: $this->module_srl;
|
||||
}
|
||||
$output = DocumentModel::getNoticeList($args, $this->columnList);
|
||||
$notice_list = $output->data;
|
||||
if(isset($output->data))
|
||||
{
|
||||
$notice_list = $output->data;
|
||||
}
|
||||
|
||||
$this->_fillModuleTitles($notice_list);
|
||||
Context::set('notice_list', $notice_list);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue