join query사용시에 value에 . 이 있을 경우 query fail이 나는 문제 해결

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2934 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-06 03:54:16 +00:00
parent cc74a3f5ec
commit 637e953a34
8 changed files with 13 additions and 20 deletions

View file

@ -360,7 +360,7 @@
$type = $this->getColumnType($output->column_type,$name);
$pipe = $v['pipe'];
$value = $this->getConditionValue($name, $value, $operation, $type);
$value = $this->getConditionValue($name, $value, $operation, $type, $output->column_type);
if(!$value) $value = $v['value'];
$str = $this->getConditionPart($name, $value, $operation);
if($sub_condition) $sub_condition .= ' '.$pipe.' ';