git-svn-id: http://xe-core.googlecode.com/svn/trunk@987 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-06 00:47:11 +00:00
parent 0833ebb974
commit aeb1d32bf2
4 changed files with 17 additions and 4 deletions

View file

@ -23,6 +23,10 @@
function initAdmin() {
// module_srl이 있으면 미리 체크하여 존재하는 모듈이면 module_info 세팅
$module_srl = Context::get('module_srl');
if(!$module_srl && $this->module_srl) {
$module_srl = $this->module_srl;
Context::set('module_srl', $module_srl);
}
// module model 객체 생성
$oModuleModel = &getModel('module');