opencart / opencart

A free shopping cart system. OpenCart is an open source PHP-based online e-commerce solution.

Home Page:https://www.opencart.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IDN email validation broken

stalker780 opened this issue · comments

@danielkerr, latest changes broke IDN emails validation again.

filter_var($email, FILTER_VALIDATE_EMAIL) will never pass validation without punycoding email domain names.

//$email = $local . '@' . idn_to_ascii($domain, IDNA_NONTRANSITIONAL_TO_ASCII, INTL_IDNA_VARIANT_UTS46);

return filter_var($email, FILTER_VALIDATE_EMAIL);

#13597

it requires the PHP IDN extension.

ok will work for u