XE 설치시에 message 모듈의 업데이트 문이 뜨던 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5234 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-01-05 07:29:12 +00:00
parent 6a0024a479
commit 215000738a

View file

@ -216,9 +216,16 @@
// 모듈을 category에 의거 설치 순서를 정함
$install_step = array('base','utility','manager','accessory','service','package');
// module 모듈은 미리 설치
$this->installModule('module','./modules/module');
$oModule = &getClass('module');
if($oModule->checkUpdate()) $oModule->moduleUpdate();
// 나머지 모든 모듈 설치
foreach($install_step as $category) {
if(count($modules[$category])) {
foreach($modules[$category] as $module) {
if($module == 'module') continue;
$this->installModule($module, sprintf('./modules/%s', $module));
$oModule = &getClass($module);