Merge branch 'develop' into next

This commit is contained in:
Kijin Sung 2020-06-17 21:09:41 +09:00
commit 00246165b3
39 changed files with 459 additions and 348 deletions

View file

@ -280,7 +280,8 @@ class fileModel extends file
*/
public static function getFileConfig($module_srl = null)
{
$config = clone ModuleModel::getModuleConfig('file');
$config = ModuleModel::getModuleConfig('file');
$config = is_object($config) ? clone $config : new stdClass();
if($module_srl)
{
$module_config = ModuleModel::getModulePartConfig('file', $module_srl);