diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-01 22:51:23 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-01 22:51:23 +0200 |
commit | 82d1ea240e674e682e0cae7aa428e9543e082ba8 (patch) | |
tree | 2c4e5625d03bbfb4768038316081d2d038ea3b30 | |
parent | d811026ec9008331049726d6b26a76913df95f82 (diff) | |
parent | 83b4bcfdbf832f1ebc78c9cf6f6aba5490b65cb3 (diff) | |
download | nextcloud-server-82d1ea240e674e682e0cae7aa428e9543e082ba8.tar.gz nextcloud-server-82d1ea240e674e682e0cae7aa428e9543e082ba8.zip |
Merge pull request #7884 from owncloud/use-idn_to_ascii-if-available
idn_to_ascii is only used if available
-rw-r--r-- | lib/private/mail.php | 3 | ||||
-rw-r--r-- | tests/lib/mail.php | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/lib/private/mail.php b/lib/private/mail.php index 79f51609631..f9083cc4e64 100644 --- a/lib/private/mail.php +++ b/lib/private/mail.php @@ -137,6 +137,9 @@ class OC_Mail { * @return string */ public static function buildAsciiEmail($emailAddress) { + if (!function_exists('idn_to_ascii')) { + return $emailAddress; + } list($name, $domain) = explode('@', $emailAddress, 2); $domain = idn_to_ascii($domain); diff --git a/tests/lib/mail.php b/tests/lib/mail.php index a88a9d797ae..3cc9868e25e 100644 --- a/tests/lib/mail.php +++ b/tests/lib/mail.php @@ -8,6 +8,15 @@ class Test_Mail extends PHPUnit_Framework_TestCase { + protected function setUp() + { + if (!function_exists('idn_to_ascii')) { + $this->markTestSkipped( + 'The intl extension is not available.' + ); + } + } + /** * @dataProvider buildAsciiEmailProvider * @param $expected |