Skip to content

Commit

Permalink
Merge pull request zendframework#2070 from WickedyMike/features/IbanSepa
Browse files Browse the repository at this point in the history
Remove remnant debug information
  • Loading branch information
weierophinney committed Aug 1, 2012
2 parents ec6b1a0 + 408431d commit 9128339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Validator/Iban.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public function isValid($value)
}

if (!preg_match('/^' . self::$ibanRegex[$countryCode] . '$/', $value)) {
$this->error(self::FALSEFORMAT . $value . '<>' . self::$ibanRegex[$countryCode]);
$this->error(self::FALSEFORMAT);
return false;
}

Expand Down

0 comments on commit 9128339

Please sign in to comment.