Allow any letters in API filter values (fixes #1591)

This commit is contained in:
Bernd Bestel 2021-08-27 21:05:46 +02:00
parent edd372f8c4
commit 14bb04d285
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -10,7 +10,7 @@ class BaseApiController extends BaseController
const PATTERN_OPERATOR = '!?(=|~|<|>|(>=)|(<=)|(§))';
const PATTERN_VALUE = '[A-Za-z\x{0400}-\x{04FF}_0-9.$#^|-]+';
const PATTERN_VALUE = '[A-Za-z\p{L}\p{M}*_0-9.$#^|-]+';
protected $OpenApiSpec = null;