mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-27 22:33:10 +09:00
#19520097: 잘못된 참조 문법 수정.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8096 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e49d4933d3
commit
c89413664e
1 changed files with 2 additions and 2 deletions
|
|
@ -560,7 +560,7 @@
|
|||
function getCondition ($output)
|
||||
{
|
||||
if (!$output->conditions) return;
|
||||
$condition = $this->_getCondition ($output->conditions, $output->column_type, &$output);
|
||||
$condition = $this->_getCondition ($output->conditions, $output->column_type, $output);
|
||||
if ($condition) $condition = ' where '.$condition;
|
||||
|
||||
return $condition;
|
||||
|
|
@ -821,7 +821,7 @@
|
|||
$left_tables = (array) $output->left_tables;
|
||||
|
||||
foreach ($left_tables as $key => $val) {
|
||||
$condition = $this->_getCondition ($output->left_conditions[$key], $output->column_type, &$output);
|
||||
$condition = $this->_getCondition ($output->left_conditions[$key], $output->column_type, $output);
|
||||
if ($condition) {
|
||||
$left_join[] = $val.' "'.$this->prefix.$output->_tables[$key]. '" "'.$key.'" on ('.$condition.')';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue