mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-21 19:32:15 +09:00
#242 object cache 정리
This commit is contained in:
parent
37c5e114ec
commit
1cc4d9ff4c
1 changed files with 9 additions and 0 deletions
|
|
@ -1703,11 +1703,20 @@ class moduleModel extends module
|
|||
$args = new stdClass();
|
||||
$args->module_srl = implode(',', $get_module_srls);
|
||||
$output = executeQueryArray('module.getModuleExtraVars', $args);
|
||||
|
||||
if(!$output->toBool())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if(!$output->data)
|
||||
{
|
||||
foreach($get_module_srls as $module_srl)
|
||||
{
|
||||
$extra_vars[$module_srl] = new stdClass;
|
||||
}
|
||||
}
|
||||
|
||||
foreach($output->data as $key => $val)
|
||||
{
|
||||
if(in_array($val->name, array('mid','module')) || $val->value == 'Array') continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue