Merge branch 'develop'

This commit is contained in:
Simon Vieille 2025-12-22 19:30:33 +01:00
commit f17969db04
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -90,7 +90,7 @@ abstract class RepositoryQuery
$this->setParameter(':'.$name, $value);
} elseif (is_string($value)) {
if (in_array($name, $this->caseInsensitiveFilters)) {
$this->andWhere(sprintf('LOWER (.%1$s) LIKE LOWER(:%1$d)', $name));
$this->andWhere(sprintf('LOWER ( .%1$s) LIKE LOWER(:%1$d)', $name));
} else {
$this->andWhere('.'.$name.' LIKE :'.$name);
}