Skip to content

Commit 65342a1

Browse files
authored
Bugfix
Bugfix
1 parent a6f9f89 commit 65342a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Processor/FilterProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function process($src, OperationInterface $operation)
2727
$value = $operation->getValue();
2828
$operator = $operation->getOperator();
2929
$fieldName = $operation->getField();
30-
$parameterName = str_replace(".", "_", $fieldName);// @see https://github.com/Nayjest/Grids/issues/111
30+
$parameterName = 'p'. md5($fieldName . $operator);
3131
$src->andWhere("$fieldName $operator :$parameterName");
3232
$src->setParameter($parameterName, $value);
3333
return $src;

0 commit comments

Comments
 (0)