forked from Wavyzz/dolibarr
Fix universal filter for !=
This commit is contained in:
@@ -11685,7 +11685,7 @@ function dolForgeCriteriaCallback($matches)
|
||||
return '';
|
||||
}
|
||||
|
||||
$operator = strtoupper(preg_replace('/[^a-z<>=]/i', '', trim($tmp[1])));
|
||||
$operator = strtoupper(preg_replace('/[^a-z<>=!]/i', '', trim($tmp[1])));
|
||||
if ($operator == 'NOTLIKE') {
|
||||
$operator = 'NOT LIKE';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user