Fixed API filter >= and <= comparison (fixes #1904)

This commit is contained in:
Bernd Bestel
2022-05-30 17:20:15 +02:00
parent e757cab0da
commit 6da637ab66
2 changed files with 2 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ class BaseApiController extends BaseController
{
const PATTERN_FIELD = '[A-Za-z_][A-Za-z0-9_]+';
const PATTERN_OPERATOR = '!?(=|~|<|>|(>=)|(<=)|(§))';
const PATTERN_OPERATOR = '!?((>=)|(<=)|=|~|<|>|(§))';
const PATTERN_VALUE = '[A-Za-z\p{L}\p{M}0-9*_.$#^| -\\\]+';