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

Rename variable to what it probably should be #3151

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions library/Zend/Validator/Barcode/Code128.php
Original file line number Diff line number Diff line change
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