fixed typo

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

View file

@ -716,13 +716,13 @@
* @brief 문서 설정 정보를 구함
**/
function getDocumentConfig() {
if(!$GLOBLAS['__document_config__']) {
if(!$GLOBALS['__document_config__']) {
$oModuleModel = &getModel('module');
$config = $oModuleModel->getModuleConfig('document');
if(!$config->thumbnail_type) $config->thumbnail_type = 'crop';
$GLOBLAS['__document_config__'] = $config;
$GLOBALS['__document_config__'] = $config;
}
return $GLOBLAS['__document_config__'];
return $GLOBALS['__document_config__'];
}
/**