mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
누락되었던 deleteActionForward 쿼리파일 추가 및 오자 수정.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7753 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
5b8d3321cb
commit
0ee4b18b53
3 changed files with 12 additions and 2 deletions
|
|
@ -23,7 +23,7 @@
|
|||
$args->type = $type;
|
||||
$args->act = $act;
|
||||
|
||||
$output = executeQuery('module.insertActionFoward', $args);
|
||||
$output = executeQuery('module.insertActionForward', $args);
|
||||
return $output;
|
||||
}
|
||||
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
$args->type = $type;
|
||||
$args->act = $act;
|
||||
|
||||
$output = executeQuery('module.deleteActionFoward', $args);
|
||||
$output = executeQuery('module.deleteActionForward', $args);
|
||||
return $output;
|
||||
}
|
||||
|
||||
|
|
|
|||
10
modules/module/queries/deleteActionForward.xml
Normal file
10
modules/module/queries/deleteActionForward.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<query id="deleteActionForward" action="delete">
|
||||
<tables>
|
||||
<table name="action_forward" />
|
||||
</tables>
|
||||
<conditions>
|
||||
<condition operation="equal" column="module" var="module" notnull="notnull" />
|
||||
<condition operation="equal" column="type" var="type" notnull="notnull" pipe="and" />
|
||||
<condition operation="equal" column="act" var="act" notnull="notnull" pipe="and" />
|
||||
</conditions>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue