diff options
author | alecpl <alec@alec.pl> | 2011-02-16 10:48:11 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-02-16 10:48:11 +0000 |
commit | 207cc0b9b3cfdfb29e4f02e83014320fd12eeb68 (patch) | |
tree | 2409f20c1b1d83413f39a274333df59137052617 /plugins/squirrelmail_usercopy | |
parent | 1a2754d18ca079ea55e4c272d7cdc9dc33c00179 (diff) |
- Applied plugin changes since 0.5-stable release
Diffstat (limited to 'plugins/squirrelmail_usercopy')
-rw-r--r-- | plugins/squirrelmail_usercopy/squirrelmail_usercopy.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php b/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php index 5d7cc012e..ee6bcc04b 100644 --- a/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php +++ b/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php @@ -73,8 +73,8 @@ class squirrelmail_usercopy extends rcube_plugin foreach ($this->abook as $rec) { // #1487096 handle multi-address and/or too long items $rec['email'] = array_shift(explode(';', $rec['email'])); - if (check_email(idn_to_ascii($rec['email']))) { - $rec['email'] = idn_to_utf8($rec['email']); + if (check_email(rcube_idn_to_ascii($rec['email']))) { + $rec['email'] = rcube_idn_to_utf8($rec['email']); $contacts->insert($rec, true); } } |