Skip to content

Commit 500e683

Browse files
authored
List + Filter NE added
In response to issue [#182](#182)
1 parent 4579f20 commit 500e683

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

api.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,6 +1173,7 @@ protected function convertFilter($field, $comparator, $value) {
11731173
return array('! BETWEEN ? AND ?',$field,$v[0],$v[1]);
11741174
case 'in': return array('! IN ?',$field,explode(',',$value));
11751175
case 'is': return array('! IS NULL',$field);
1176+
case 'ne': return array('! <> ?',$field,$value);
11761177
}
11771178
} else {
11781179
switch ($comparator) {

0 commit comments

Comments
 (0)