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

This commit is contained in:
zero 2007-03-30 08:00:28 +00:00
parent 8d6f9a5631
commit 87932a5bd5
2 changed files with 3 additions and 3 deletions

View file

@ -133,10 +133,10 @@
* action foward는 등록된 action이 요청된 모듈에 없을 경우 찾아서 포워딩을 하는 구조이다 * action foward는 등록된 action이 요청된 모듈에 없을 경우 찾아서 포워딩을 하는 구조이다
* 모듈의 설치시에 사용된다. * 모듈의 설치시에 사용된다.
**/ **/
function insertActionForward($module, $type, $action) { function insertActionForward($module, $type, $act) {
$args->module = $module; $args->module = $module;
$args->type = $type; $args->type = $type;
$args->action = $action; $args->act = $act;
$oDB = &DB::getInstance(); $oDB = &DB::getInstance();
$output = $oDB->executeQuery('module.insertActionFoward', $args); $output = $oDB->executeQuery('module.insertActionFoward', $args);

View file

@ -3,7 +3,7 @@
<table name="action_foward" /> <table name="action_foward" />
</tables> </tables>
<columns> <columns>
<column name="action" default="action" notnull="notnull" /> <column name="act" default="act" notnull="notnull" />
<column name="module" default="module" notnull="notnull" /> <column name="module" default="module" notnull="notnull" />
<column name="type" default="type" notnull="notnull" /> <column name="type" default="type" notnull="notnull" />
</columns> </columns>