mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
improved to get taglist of included modules as well
This commit is contained in:
parent
dd74d266f5
commit
39fadebe72
1 changed files with 8 additions and 1 deletions
|
|
@ -715,7 +715,14 @@ class BoardView extends Board
|
||||||
}
|
}
|
||||||
|
|
||||||
$obj = new stdClass;
|
$obj = new stdClass;
|
||||||
$obj->mid = $this->module_info->mid;
|
if (empty($this->include_modules))
|
||||||
|
{
|
||||||
|
$obj->mid = $this->module_info->mid;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$obj->module_srl = $this->include_modules;
|
||||||
|
}
|
||||||
$obj->list_count = 10000;
|
$obj->list_count = 10000;
|
||||||
$output = TagModel::getInstance()->getTagList($obj);
|
$output = TagModel::getInstance()->getTagList($obj);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue