diff options
author | alecpl <alec@alec.pl> | 2011-02-03 13:58:07 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-02-03 13:58:07 +0000 |
commit | e8d5bdc84ecfdf6fe5008655215a258bbdf0c521 (patch) | |
tree | 24e98fca92b72bcc0ba4b5519f5d2c9265a7c8d5 /program/steps/mail/addcontact.inc | |
parent | 9ebac6616d32d7672ea59da67321380037e2324c (diff) |
- Fix IDNA support when IDN/INTL modules are in use (#1487742)
Diffstat (limited to 'program/steps/mail/addcontact.inc')
-rw-r--r-- | program/steps/mail/addcontact.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/addcontact.inc b/program/steps/mail/addcontact.inc index 28086985a..ba9a44aa3 100644 --- a/program/steps/mail/addcontact.inc +++ b/program/steps/mail/addcontact.inc @@ -46,7 +46,7 @@ if (!empty($_POST['_address']) && is_object($CONTACTS)) $OUTPUT->send(); } - $contact['email'] = idn_to_utf8($contact['email']); + $contact['email'] = rcube_idn_to_utf8($contact['email']); // use email address part for name if (empty($contact['name']) || $contact['name'] == $contact['email']) |