mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Fix #1108 값이 없을경우 빈 배열의 값으로 반환하여 PHP7.2 워닝에러를 고침
This commit is contained in:
parent
5f812820fa
commit
935603743f
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ class spamfilterModel extends spamfilter
|
|||
$args->sort_index = "regdate";
|
||||
$args->page = Context::get('page')?Context::get('page'):1;
|
||||
$output = executeQueryArray('spamfilter.getDeniedIPList', $args);
|
||||
if(!$output->data) return;
|
||||
if(!$output->data) return array();
|
||||
return $output->data;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue