mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
#385 module_config 오류 수정
This commit is contained in:
parent
92b4dee946
commit
c640bf64ee
1 changed files with 2 additions and 2 deletions
|
|
@ -1370,7 +1370,7 @@ class moduleModel extends module
|
|||
$args->site_srl = $site_srl;
|
||||
$output = executeQuery('module.getModuleConfig', $args);
|
||||
if($output->data->config) $config = unserialize($output->data->config);
|
||||
else $config = new stdClass;
|
||||
else $config = null;
|
||||
|
||||
//insert in cache
|
||||
if($oCacheHandler->isSupport())
|
||||
|
|
@ -1410,7 +1410,7 @@ class moduleModel extends module
|
|||
$args->module_srl = $module_srl;
|
||||
$output = executeQuery('module.getModulePartConfig', $args);
|
||||
if($output->data->config) $config = unserialize($output->data->config);
|
||||
else $config = new stdClass;
|
||||
else $config = null;
|
||||
|
||||
//insert in cache
|
||||
if($oCacheHandler->isSupport())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue