Skip to content

Commit

Permalink
Merge pull request #12 from mgldev/patch-1
Browse files Browse the repository at this point in the history
Fixes incorrect variable reference
  • Loading branch information
phpboyscout authored Jul 22, 2016
2 parents 7500e51 + d1a7a65 commit 0be244d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Zucchi/Controller/RequestParserTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected function parseSimpleWhere($where)

} else if (is_string($value) && strlen($value)) {
$value = array(
'mode' => $modes['and'],
'mode' => $this->requestModes['and'],
'operator' => $this->requestOperators['eq'],
'value' => $value
);
Expand Down

0 comments on commit 0be244d

Please sign in to comment.