mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 08:49:56 +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' => '>',
|
||||
'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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue