diff options
author | Chris Smith <toonarmy@phpbb.com> | 2009-08-18 01:43:51 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2009-08-18 01:43:51 +0000 |
commit | 20bf778b93a4057814503dd759d94b50868f6d42 (patch) | |
tree | adf35cd7733a83cd26cc96470e271f3a0710dd7d /phpBB/includes/functions_messenger.php | |
parent | bfee2c4c67e942d54e1560cd3f099fe7e19b7a59 (diff) | |
download | forums-20bf778b93a4057814503dd759d94b50868f6d42.tar forums-20bf778b93a4057814503dd759d94b50868f6d42.tar.gz forums-20bf778b93a4057814503dd759d94b50868f6d42.tar.bz2 forums-20bf778b93a4057814503dd759d94b50868f6d42.tar.xz forums-20bf778b93a4057814503dd759d94b50868f6d42.zip |
Per RFC2047 section 5 do not use quoted strings for encoded recipient names
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10011 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_messenger.php')
-rw-r--r-- | phpBB/includes/functions_messenger.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php index 212ae720cb..9b9c013a02 100644 --- a/phpBB/includes/functions_messenger.php +++ b/phpBB/includes/functions_messenger.php @@ -455,7 +455,7 @@ class messenger foreach ($address_ary as $which_ary) { - $$type .= (($$type != '') ? ', ' : '') . (($which_ary['name'] != '') ? '"' . mail_encode($which_ary['name'], $encode_eol) . '" <' . $which_ary['email'] . '>' : $which_ary['email']); + $$type .= (($$type != '') ? ', ' : '') . (($which_ary['name'] != '') ? mail_encode($which_ary['name'], $encode_eol) . ' <' . $which_ary['email'] . '>' : $which_ary['email']); } } |