mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix inconsistent data type for point module part config
This commit is contained in:
parent
1254594a7c
commit
2e2e11618b
1 changed files with 4 additions and 0 deletions
|
|
@ -869,6 +869,10 @@ class pointController extends point
|
|||
if (!isset(self::$_module_config_cache[$module_srl]))
|
||||
{
|
||||
self::$_module_config_cache[$module_srl] = $oModuleModel->getModulePartConfig('point', $module_srl);
|
||||
if (is_object(self::$_module_config_cache[$module_srl]))
|
||||
{
|
||||
self::$_module_config_cache[$module_srl] = get_object_vars(self::$_module_config_cache[$module_srl]);
|
||||
}
|
||||
}
|
||||
$module_config = self::$_module_config_cache[$module_srl];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue