Skip to content
Snippets Groups Projects
Commit 0e05366e authored by jaapjansma's avatar jaapjansma
Browse files

Regression fix for issue #125.

parent 2a89b457
No related branches found
No related tags found
No related merge requests found
......@@ -179,11 +179,11 @@ class FilterCollection {
$this->whereClause = new OrClause();
}
$this->whereClause->setIsOR($isOr);
try {
$this->data_processor->getDataFlow()
->addWhereClause($this->whereClause);
} catch (InvalidFlowException $e) {
}
}
try {
$this->data_processor->getDataFlow()
->addWhereClause($this->whereClause);
} catch (InvalidFlowException $e) {
}
$this->whereClause->addWhereClause($where);
}
......
  • Yes, this was needed, I wondered about it!

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