#18311230 : fixed a query

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6985 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-11-25 08:45:29 +00:00
parent a591384e50
commit c6ce5c9259
2 changed files with 2 additions and 1 deletions

View file

@ -621,7 +621,7 @@
if(!is_null($document_srl)) $obj->document_srl = $document_srl; if(!is_null($document_srl)) $obj->document_srl = $document_srl;
if(!is_null($var_idx)) $obj->var_idx = $var_idx; if(!is_null($var_idx)) $obj->var_idx = $var_idx;
if(!is_null($lang_code)) $obj->lang_code = $lang_code; if(!is_null($lang_code)) $obj->lang_code = $lang_code;
if(!is_null($eid)) $obj->lang_code = $eid; if(!is_null($eid)) $obj->eid = $eid;
$output = executeQuery('document.deleteDocumentExtraVars', $obj); $output = executeQuery('document.deleteDocumentExtraVars', $obj);
return $output; return $output;
} }

View file

@ -7,5 +7,6 @@
<condition operation="equal" column="document_srl" var="document_srl" filter="number" pipe="and" /> <condition operation="equal" column="document_srl" var="document_srl" filter="number" pipe="and" />
<condition operation="equal" column="var_idx" var="var_idx" filter="number" pipe="and" /> <condition operation="equal" column="var_idx" var="var_idx" filter="number" pipe="and" />
<condition operation="equal" column="lang_code" var="lang_code" pipe="and" /> <condition operation="equal" column="lang_code" var="lang_code" pipe="and" />
<condition operation="equal" column="eid" var="eid" pipe="and" />
</conditions> </conditions>
</query> </query>