fixed typo

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5802 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-03-09 02:32:26 +00:00
parent f34dc768ab
commit 8bcd13d0c5

View file

@ -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;