Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13992609
D17501.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
504 B
Referenced Files
None
Subscribers
None
D17501.diff
View Options
diff --git a/externals/phpmailer/class.phpmailer-lite.php b/externals/phpmailer/class.phpmailer-lite.php
--- a/externals/phpmailer/class.phpmailer-lite.php
+++ b/externals/phpmailer/class.phpmailer-lite.php
@@ -656,6 +656,10 @@
$addr_str .= implode(', ', $addresses);
$addr_str .= $this->LE;
+ // NOTE: This is a narrow hack to fix an issue with 1000+ characters of
+ // recipients, described in T12372.
+ $addr_str = wordwrap($addr_str, 75, "\n ");
+
return $addr_str;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Oct 23, 5:44 PM (3 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6744772
Default Alt Text
D17501.diff (504 B)
Attached To
Mode
D17501: Apply the wordwrap() hack for "To" to PHPMailerLite
Attached
Detach File
Event Timeline
Log In to Comment