#18063849 : fixed wrong variable

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6508 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-06-10 04:38:54 +00:00
parent a2bcbd0380
commit ac3576212e

View file

@ -97,7 +97,10 @@
}
$oModuleModel = &getModel('module');
$document_config = $oModuleModel->getModulePartConfig('document', $module_srl);
if($current_module_srl)
{
$document_config = $oModuleModel->getModulePartConfig('document', $current_module_srl);
}
if(!isset($document_config->use_history)) $document_config->use_history = 'N';
Context::set('document_config', $document_config);