mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 04:24:41 +01:00
fix for cascading Multipart/Alternative
This commit is contained in:
parent
2dbd389549
commit
5026d0ce38
@ -1661,7 +1661,7 @@
|
|||||||
// as attachment AND as abstracted ical information (we use our notification style here).
|
// as attachment AND as abstracted ical information (we use our notification style here).
|
||||||
$partText = false;
|
$partText = false;
|
||||||
$partHTML = false;
|
$partHTML = false;
|
||||||
if (self::$debug) _debug_array($_structure);
|
if (self::$debug) _debug_array(array("METHOD"=>__METHOD__,"LINE"=>__LINE__,"STRUCTURE"=>$_structure));
|
||||||
foreach($_structure as $mimePart) {
|
foreach($_structure as $mimePart) {
|
||||||
if($mimePart->type == 'TEXT' && ($mimePart->subType == 'PLAIN' || $mimePart->subType == 'CALENDAR') && $mimePart->bytes > 0) {
|
if($mimePart->type == 'TEXT' && ($mimePart->subType == 'PLAIN' || $mimePart->subType == 'CALENDAR') && $mimePart->bytes > 0) {
|
||||||
if ($mimePart->subType == 'CALENDAR' && $partText === false) $partText = $mimePart; // only if there is no partText set already
|
if ($mimePart->subType == 'CALENDAR' && $partText === false) $partText = $mimePart; // only if there is no partText set already
|
||||||
@ -1673,6 +1673,9 @@
|
|||||||
#$partHTML = array($mimePart);
|
#$partHTML = array($mimePart);
|
||||||
error_log(__METHOD__." process MULTIPART/RELATED with array as subparts");
|
error_log(__METHOD__." process MULTIPART/RELATED with array as subparts");
|
||||||
$partHTML = $mimePart;
|
$partHTML = $mimePart;
|
||||||
|
} elseif ($mimePart->type == 'MULTIPART' && $mimePart->subType == 'ALTERNATIVE' && is_array($mimePart->subParts)) {
|
||||||
|
//cascading multipartAlternative structure, assuming only the first one is to be used
|
||||||
|
return $this->getMultipartAlternative($_uid,$mimePart->subParts,$_htmlMode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user