Skip to content

Commit 7ee174f

Browse files
authored
Merge pull request #183 from VyseExhale/patch-1
List + Filter NE added
2 parents 4579f20 + 500e683 commit 7ee174f

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)