mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Fix lowercase
This commit is contained in:
@@ -229,7 +229,7 @@ class OperatorQuerySearch implements SearchInterface
|
|||||||
Log::debug(sprintf('Now handle %s', $class));
|
Log::debug(sprintf('Now handle %s', $class));
|
||||||
/** @var Field $searchNode */
|
/** @var Field $searchNode */
|
||||||
// used to search for x:y
|
// used to search for x:y
|
||||||
$operator = $searchNode->getValue();
|
$operator = strtolower($searchNode->getValue());
|
||||||
$value = $searchNode->getNode()->getValue();
|
$value = $searchNode->getNode()->getValue();
|
||||||
// must be valid operator:
|
// must be valid operator:
|
||||||
if (in_array($operator, $this->validOperators, true)) {
|
if (in_array($operator, $this->validOperators, true)) {
|
||||||
|
Reference in New Issue
Block a user