join 쿼리 처리시 더블쿼터 문제점 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5873 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
clench 2009-03-13 04:45:22 +00:00
parent 7ba0f7e127
commit e2259b21f8

View file

@ -794,7 +794,7 @@
foreach($left_tables as $key => $val) {
$condition = $this->getLeftCondition($output->left_conditions[$key],$output->column_type,$output->tables);
if($condition){
$left_join[] = $val . ' "'.$this->prefix.$output->_tables[$key].'" as '.$key . ' on (' . $condition . ')';
$left_join[] = $val . ' "'.$this->prefix.$output->_tables[$key].'" as "'.$key.'" on (' . $condition . ')';
}
}