mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 07:12:15 +09:00
Revert "NOISSUE point 모듈에서 modulePartConfig 변수를 잘못 사용하는 문제 수정."
This reverts commit b75386bc42.
This commit is contained in:
parent
cd585038b6
commit
77efe4870e
3 changed files with 29 additions and 29 deletions
|
|
@ -41,18 +41,18 @@ class pointView extends point
|
|||
$module_config = $oModuleModel->getModulePartConfig('point', $current_module_srl);
|
||||
if(!$module_config)
|
||||
{
|
||||
$module_config->insert_document = $config->insert_document;
|
||||
$module_config->insert_comment = $config->insert_comment;
|
||||
$module_config->upload_file = $config->upload_file;
|
||||
$module_config->download_file = $config->download_file;
|
||||
$module_config->read_document = $config->read_document;
|
||||
$module_config->voted = $config->voted;
|
||||
$module_config->blamed = $config->blamed;
|
||||
$module_config['insert_document'] = $config->insert_document;
|
||||
$module_config['insert_comment'] = $config->insert_comment;
|
||||
$module_config['upload_file'] = $config->upload_file;
|
||||
$module_config['download_file'] = $config->download_file;
|
||||
$module_config['read_document'] = $config->read_document;
|
||||
$module_config['voted'] = $config->voted;
|
||||
$module_config['blamed'] = $config->blamed;
|
||||
}
|
||||
}
|
||||
|
||||
$module_config->module_srl = $current_module_srl;
|
||||
$module_config->point_name = $config->point_name;
|
||||
$module_config['module_srl'] = $current_module_srl;
|
||||
$module_config['point_name'] = $config->point_name;
|
||||
Context::set('module_config', $module_config);
|
||||
// Set the template file
|
||||
$oTemplate = &TemplateHandler::getInstance();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue