Skip to content

Commit

Permalink
[DDC-1637] Fix wrong seach/replace.
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed May 26, 2012
1 parent 3dd10ce commit c690855
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -112,10 +112,10 @@ public function walkCompositeExpression(CompositeExpression $expr)

switch($expr->getType()) {
case CompositeExpression::TYPE_AND:
return $this->andexpressionList($expressionList);
return $this->andExpressions($expressionList);

case CompositeExpression::TYPE_OR:
return $this->orexpressionList($expressionList);
return $this->orExpressions($expressionList);

default:
throw new \RuntimeException("Unknown composite " . $expr->getType());
Expand Down

0 comments on commit c690855

Please sign in to comment.