summaryrefslogtreecommitdiffstats
path: root/system/libraries/Form_validation.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2017-11-09 16:29:42 +0100
committerAndrey Andreev <narf@devilix.net>2017-11-09 16:29:42 +0100
commit4fed06145e798fcff79bbe571a3ee3e262fa484a (patch)
tree37229e1445cdce4860fa8f4032f2075d2be93de4 /system/libraries/Form_validation.php
parentf9133e2ea006a796fdaf39d5421d99f1a9a57c80 (diff)
parent4541bf930e715917622dc2d225bf5517f99db35a (diff)
Merge branch '3.1-stable' into develop
Diffstat (limited to 'system/libraries/Form_validation.php')
-rw-r--r--system/libraries/Form_validation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index ee9ea6850..da288ec76 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -1237,7 +1237,7 @@ class CI_Form_validation {
{
if (function_exists('idn_to_ascii') && preg_match('#\A([^@]+)@(.+)\z#', $str, $matches))
{
- $str = $matches[1].'@'.idn_to_ascii($matches[2], INTL_IDNA_VARIANT_UTS46);
+ $str = $matches[1].'@'.idn_to_ascii($matches[2], 0, INTL_IDNA_VARIANT_UTS46);
}
return (bool) filter_var($str, FILTER_VALIDATE_EMAIL);