From 435f2864f2b5e83bf983f7b21590e251aef03691 Mon Sep 17 00:00:00 2001 From: rokmcssu Date: Mon, 16 Jul 2007 01:23:00 +0000 Subject: [PATCH] =?UTF-8?q?=EC=97=B0=EC=82=B0=EC=9E=90(!=3D)=EB=A5=BC=20?= =?UTF-8?q?=ED=98=B8=ED=99=98=EC=84=B1=EC=97=90=20=EB=AC=B8=EC=A0=9C?= =?UTF-8?q?=EC=97=86=EB=8A=94=20=EC=97=B0=EC=82=B0=EC=9E=90(<>)=EB=A1=9C?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD=ED=95=A8.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/trunk@1938 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/db/DB.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/db/DB.class.php b/classes/db/DB.class.php index 466594559..caa5fe6ea 100644 --- a/classes/db/DB.class.php +++ b/classes/db/DB.class.php @@ -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';