git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7262 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
clench 2010-01-29 07:27:25 +00:00
parent e8bd3e145b
commit c0b356ae4a

View file

@ -729,7 +729,7 @@
}
else if($output->column_type[$name]=='number') {
// 연산식이 들어갔을 경우 컬럼명이 있는 지 체크해 더블쿼터를 넣어줌
preg_match("/(?i)[a-z][a-z0-9_-]+/", $value, $matches);
preg_match("/(?i)[a-z][a-z0-9_]+/", $value, $matches);
foreach($matches as $key => $val) {
$value = str_replace($val, "\"".$val."\"", $value);