Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/fix-name-of-variable' of git://github.com/localh…
Browse files Browse the repository at this point in the history
…einz/zf2 into hotfix/3159
  • Loading branch information
weierophinney committed Dec 11, 2012
2 parents 38bf777 + 84fb7f0 commit 553942e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/Zend/Validator/Barcode/Code128.php
Expand Up @@ -406,8 +406,8 @@ protected function chr128($value, $set)
return -1;
}
} else {
if ($ord <= 106) {
return ($ord + 32);
if ($value <= 106) {
return ($value + 32);
} else {
return -1;
}
Expand Down

0 comments on commit 553942e

Please sign in to comment.