mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 08:41:39 +09:00
Fix #2275 warning/notice if getTagList() is called with incomplete arguments
This commit is contained in:
parent
1992e9dd5d
commit
40b3dcd5f0
1 changed files with 2 additions and 2 deletions
|
|
@ -103,8 +103,8 @@ class TagModel extends Tag
|
|||
$args->module_srl = $obj->module_srl;
|
||||
}
|
||||
|
||||
$args->list_count = $obj->list_count;
|
||||
$args->count = $obj->sort_index;
|
||||
$args->list_count = $obj->list_count ?? null;
|
||||
$args->count = $obj->sort_index ?? null;
|
||||
|
||||
$output = executeQueryArray('tag.getTagList', $args);
|
||||
if(!$output->toBool()) return $output;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue