mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 00:59:58 +09:00
parent
6e478dc8d7
commit
c83f6d96dd
1 changed files with 3 additions and 2 deletions
|
|
@ -1408,7 +1408,8 @@ class moduleModel extends module
|
||||||
$args->module = $module;
|
$args->module = $module;
|
||||||
$args->module_srl = $module_srl;
|
$args->module_srl = $module_srl;
|
||||||
$output = executeQuery('module.getModulePartConfig', $args);
|
$output = executeQuery('module.getModulePartConfig', $args);
|
||||||
$config = unserialize($output->data->config);
|
if($output->data->config) $config = unserialize($output->data->config);
|
||||||
|
else $config = new stdClass;
|
||||||
|
|
||||||
//insert in cache
|
//insert in cache
|
||||||
if($oCacheHandler->isSupport())
|
if($oCacheHandler->isSupport())
|
||||||
|
|
@ -1735,7 +1736,7 @@ class moduleModel extends module
|
||||||
$get_module_srls = $list_module_srl;
|
$get_module_srls = $list_module_srl;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($vars === false || count($get_module_srls) > 0)
|
if(count($get_module_srls) > 0)
|
||||||
{
|
{
|
||||||
$args = new stdClass();
|
$args = new stdClass();
|
||||||
$args->module_srl = implode(',', $get_module_srls);
|
$args->module_srl = implode(',', $get_module_srls);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue