We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6f9f89 commit 65342a1Copy full SHA for 65342a1
src/Processor/FilterProcessor.php
@@ -27,7 +27,7 @@ public function process($src, OperationInterface $operation)
27
$value = $operation->getValue();
28
$operator = $operation->getOperator();
29
$fieldName = $operation->getField();
30
- $parameterName = str_replace(".", "_", $fieldName);// @see https://github.com/Nayjest/Grids/issues/111
+ $parameterName = 'p'. md5($fieldName . $operator);
31
$src->andWhere("$fieldName $operator :$parameterName");
32
$src->setParameter($parameterName, $value);
33
return $src;
0 commit comments