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

This commit is contained in:
zero 2007-03-15 03:36:44 +00:00
parent 93872affd9
commit bdea44a02b
2 changed files with 13 additions and 3 deletions

View file

@ -24,6 +24,15 @@
@chmod($dir, 0707);
}
// page 모듈로 모듈 추가
$oDB = &DB::getInstance();
$oModuleController = &getController('module');
$args->module_srl = $oDB->getNextSequence();
$args->mid = "pagemaker";
$args->module = "pagemaker";
$oModuleController->insertModule($args);
return new Object();
}