mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 08:09:58 +09:00
연산자(!=)를 호환성에 문제없는 연산자(<>)로 변경함.
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1938 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4f6324e9eb
commit
435f2864f2
1 changed files with 2 additions and 2 deletions
|
|
@ -21,7 +21,7 @@
|
||||||
'excess' => '>',
|
'excess' => '>',
|
||||||
'less' => '<=',
|
'less' => '<=',
|
||||||
'below' => '<',
|
'below' => '<',
|
||||||
'notequal' => '!=',
|
'notequal' => '<>',
|
||||||
'notnull' => 'is not null',
|
'notnull' => 'is not null',
|
||||||
'null' => 'is null',
|
'null' => 'is null',
|
||||||
);
|
);
|
||||||
|
|
@ -355,7 +355,7 @@
|
||||||
break;
|
break;
|
||||||
case 'notequal' :
|
case 'notequal' :
|
||||||
if(!$value) return;
|
if(!$value) return;
|
||||||
return $name.' != '.$value;
|
return $name.' <> '.$value;
|
||||||
break;
|
break;
|
||||||
case 'notnull' :
|
case 'notnull' :
|
||||||
return $name.' is not null';
|
return $name.' is not null';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue