연산자(!=)를 호환성에 문제없는 연산자(<>)로 변경함.

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1938 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
rokmcssu 2007-07-16 01:23:00 +00:00
parent 4f6324e9eb
commit 435f2864f2

View file

@ -21,7 +21,7 @@
'excess' => '>',
'less' => '<=',
'below' => '<',
'notequal' => '!=',
'notequal' => '<>',
'notnull' => 'is not null',
'null' => 'is null',
);
@ -355,7 +355,7 @@
break;
case 'notequal' :
if(!$value) return;
return $name.' != '.$value;
return $name.' <> '.$value;
break;
case 'notnull' :
return $name.' is not null';