mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 04:24:14 +09:00
XE 설치시에 message 모듈의 업데이트 문이 뜨던 문제 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5234 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6a0024a479
commit
215000738a
1 changed files with 7 additions and 0 deletions
|
|
@ -216,9 +216,16 @@
|
||||||
// 모듈을 category에 의거 설치 순서를 정함
|
// 모듈을 category에 의거 설치 순서를 정함
|
||||||
$install_step = array('base','utility','manager','accessory','service','package');
|
$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) {
|
foreach($install_step as $category) {
|
||||||
if(count($modules[$category])) {
|
if(count($modules[$category])) {
|
||||||
foreach($modules[$category] as $module) {
|
foreach($modules[$category] as $module) {
|
||||||
|
if($module == 'module') continue;
|
||||||
$this->installModule($module, sprintf('./modules/%s', $module));
|
$this->installModule($module, sprintf('./modules/%s', $module));
|
||||||
|
|
||||||
$oModule = &getClass($module);
|
$oModule = &getClass($module);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue