#19520097: 잘못된 참조 문법 수정.

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8096 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ysnglee2000 2011-02-13 17:27:02 +00:00
parent e49d4933d3
commit c89413664e

View file

@ -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.')';
}