Skip to content
Snippets Groups Projects
Commit 2a89b457 authored by jaapjansma's avatar jaapjansma
Browse files

Regression fix for issue #125.

parent b1d5e88a
No related branches found
No related tags found
No related merge requests found
# Version 1.66 (not yet reelased)
* Regression fix for issue #125.
# Version 1.65
* Regression fix for issue #125 after refactoring for filter collections.
......
......@@ -189,6 +189,9 @@ class FilterCollection {
}
public function removeWhere(WhereClauseInterface $where) {
if ($this->data_processor && $this->whereClause) {
$this->data_processor->getDataFlow()->removeWhereClause($this->whereClause);
}
if ($this->whereClause instanceof AndClause) {
$this->whereClause->removeWhereClause($where);
} elseif ($this->whereClause instanceof OrClause) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment