diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2022-01-27 20:06:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 20:06:29 +0100 |
commit | 3ee9bcc4f76006c493b3e41d21536aae38e987e9 (patch) | |
tree | 7463266964f7047b5fca1c075273d13132c5b84d /lib/private/Mail | |
parent | 8de4709a10e7d42ad22723cb8a241ed534bba227 (diff) | |
parent | d69531ac8ecabfaa2c915d5266d09971c0129a77 (diff) | |
download | nextcloud-server-3ee9bcc4f76006c493b3e41d21536aae38e987e9.tar.gz nextcloud-server-3ee9bcc4f76006c493b3e41d21536aae38e987e9.zip |
Merge pull request #30814 from nextcloud/backport/30508/stable23
Diffstat (limited to 'lib/private/Mail')
-rw-r--r-- | lib/private/Mail/Mailer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Mail/Mailer.php b/lib/private/Mail/Mailer.php index 1189907eac9..61f506d2676 100644 --- a/lib/private/Mail/Mailer.php +++ b/lib/private/Mail/Mailer.php @@ -244,7 +244,7 @@ class Mailer implements IMailer { } [$name, $domain] = explode('@', $email, 2); - $domain = idn_to_ascii($domain, 0,INTL_IDNA_VARIANT_UTS46); + $domain = idn_to_ascii($domain, 0, INTL_IDNA_VARIANT_UTS46); return $name.'@'.$domain; } |