Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
intl exception variable's name fix
  • Loading branch information
filipp-kucheriavenko authored and Ocramius committed Feb 2, 2015
1 parent d54bbe1 commit 8227300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/I18n/Validator/Float.php
Expand Up @@ -128,7 +128,7 @@ public function isValid($value)
throw new Exception\InvalidArgumentException($formatter->getErrorMessage());
}
} catch (IntlException $intlException) {
throw new Exception\InvalidArgumentException($e->getMessage(), 0, $intlException);
throw new Exception\InvalidArgumentException($intlException->getMessage(), 0, $intlException);
}

if (StringUtils::hasPcreUnicodeSupport()) {
Expand Down

0 comments on commit 8227300

Please sign in to comment.