mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 11:11:39 +09:00
모듈별 업로드 용량 설정시 '용량 초과' 오류 문제 수정
오브젝트 참조로 인해 getFileConfig() 재호출시 이전에 셋팅된 오브젝트가 유지되지 못하고 새로 셋팅되는 문제
This commit is contained in:
parent
c10e4c082b
commit
63b5d0288b
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ class fileModel extends file
|
|||
function getFileConfig($module_srl = null)
|
||||
{
|
||||
$oModuleModel = getModel('module');
|
||||
$config = $oModuleModel->getModuleConfig('file') ?: new stdClass;
|
||||
$config = clone $oModuleModel->getModuleConfig('file');
|
||||
if($module_srl)
|
||||
{
|
||||
$module_config = $oModuleModel->getModulePartConfig('file', $module_srl);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue