Skip to content

Commit

Permalink
Merge branch 'hotfix/3001' of git://github.com/stormwild/zf2 into sto…
Browse files Browse the repository at this point in the history
…rmwild-hotfix/3001
  • Loading branch information
Ralph Schindler committed Nov 20, 2012
2 parents 9a81476 + 2ce06a4 commit 060b9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/Zend/Db/Sql/Predicate/Between.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ public function __construct($identifier = null, $minValue = null, $maxValue = nu
if ($identifier) {
$this->setIdentifier($identifier);
}
if ($minValue) {
if (!is_null($minValue)) {
$this->setMinValue($minValue);
}
if ($maxValue) {
if (!is_null($maxValue)) {
$this->setMaxValue($maxValue);
}
}
Expand Down

0 comments on commit 060b9c1

Please sign in to comment.