mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 01:58:09 +01:00
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