Skip to content
Snippets Groups Projects
Commit 228f816f authored by Jared Hancock's avatar Jared Hancock
Browse files

Merge remote branch 'upstream/develop' into develop-next

Conflicts:
	include/class.mailparse.php
parents b90e479b f7a7ea2f
No related branches found
No related tags found
No related merge requests found
......@@ -402,6 +402,10 @@ class Mail_Parse {
function parseAddressList($address){
if (!$address)
return false;
// Delivered-To may appear more than once in the email headers
if (is_array($address))
$address = implode(', ', $address);
return Mail_RFC822::parseAddressList($address, null, null,false);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment