Simple fix for the MULTIPART/RELATED section of the Mail-Structure.

This commit is contained in:
Klaus Leithoff 2007-09-14 07:20:06 +00:00
parent df8b55c0f7
commit f37e2bfdc6

View File

@ -998,7 +998,7 @@
$partHTML = $mimePart; $partHTML = $mimePart;
} elseif ($mimePart->type == 'MULTIPART' && $mimePart->subType == 'RELATED' && is_array($mimePart->subParts)) { } elseif ($mimePart->type == 'MULTIPART' && $mimePart->subType == 'RELATED' && is_array($mimePart->subParts)) {
// in a multipart alternative we treat the multipart/related as html part // in a multipart alternative we treat the multipart/related as html part
$partHTML = $mimePart; $partHTML =array($mimePart);
} }
} }