search index

This commit is contained in:
2023-10-22 16:09:36 +03:00
parent 1a6de5c1bb
commit e2e3842cd0
7 changed files with 42 additions and 11 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ final class FilterParser
"eqfalse" => false,
"netrue" => true,
"nefalse" => false,
"regex" => "%{$value}%",
"regex" => "%" . strtolower($value) . "%",
"gt" => is_numeric($value) ? floatval($value) : $value,
"gte" => is_numeric($value) ? floatval($value) : $value,
"lt" => is_numeric($value) ? floatval($value) : $value,