mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 03:09:55 +09:00
fixed typo
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5802 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f34dc768ab
commit
8bcd13d0c5
1 changed files with 3 additions and 3 deletions
|
|
@ -23,13 +23,13 @@
|
|||
* @brief 모듈별 에디터 설정을 return
|
||||
**/
|
||||
function getEditorConfig($module_srl) {
|
||||
if(!$GLOBLAS['__editor_module_config__'][$module_srl]) {
|
||||
if(!$GLOBALS['__editor_module_config__'][$module_srl]) {
|
||||
// 선택된 모듈의 trackback설정을 가져옴
|
||||
$oModuleModel = &getModel('module');
|
||||
$GLOBLAS['__editor_module_config__'][$module_srl] = $oModuleModel->getModulePartConfig('editor', $module_srl);
|
||||
$GLOBALS['__editor_module_config__'][$module_srl] = $oModuleModel->getModulePartConfig('editor', $module_srl);
|
||||
}
|
||||
|
||||
$editor_config = $GLOBLAS['__editor_module_config__'][$module_srl];
|
||||
$editor_config = $GLOBALS['__editor_module_config__'][$module_srl];
|
||||
|
||||
if(!is_object($editor_config)) $editor_config = null;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue