From 54ecc90b586595427c98603799de8a9608d187c0 Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Fri, 5 Oct 2007 07:05:41 +0000 Subject: [PATCH] fix for problems with displaying MULTIPART/RELATED sections of Mails. This fix is connected to a fix to egw-pear/Net/IMAP.php for creating the mailstructure regarding MULTIPART/RELATED --- felamimail/inc/class.bofelamimail.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/felamimail/inc/class.bofelamimail.inc.php b/felamimail/inc/class.bofelamimail.inc.php index dd1be8a532..e73480f175 100644 --- a/felamimail/inc/class.bofelamimail.inc.php +++ b/felamimail/inc/class.bofelamimail.inc.php @@ -595,6 +595,7 @@ $structure->subParts[$tempID]->subParts[$tempID]->type == 'MULTIPART' && ($structure->subParts[$tempID]->subParts[$tempID]->subType == 'MIXED' || $structure->subParts[$tempID]->subParts[$tempID]->subType == 'ALTERNATIVE' || + $structure->subParts[$tempID]->subParts[$tempID]->subType == 'RELATED' || $structure->subParts[$tempID]->subParts[$tempID]->subType == 'REPORT')) { $structure = $structure->subParts[$tempID]->subParts[$tempID]; @@ -617,6 +618,7 @@ $structure->subParts[$tempID]->subParts[$tempID]->type == 'MULTIPART' && ($structure->subParts[$tempID]->subParts[$tempID]->subType == 'MIXED' || $structure->subParts[$tempID]->subParts[$tempID]->subType == 'ALTERNATIVE' || + $structure->subParts[$tempID]->subParts[$tempID]->subType == 'RELATED' || $structure->subParts[$tempID]->subParts[$tempID]->subType == 'REPORT')) { $structure = $structure->subParts[$tempID]->subParts[$tempID]; } else {