From 4bf278daeaa82ef5c28be66dfabab3650da03a7d Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 10 Jul 2007 13:42:02 +0000 Subject: [PATCH] fixed not always completly parsed multipart messages --- egw-pear/Net/IMAP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egw-pear/Net/IMAP.php b/egw-pear/Net/IMAP.php index 231fb73334..cd9c9d80c8 100644 --- a/egw-pear/Net/IMAP.php +++ b/egw-pear/Net/IMAP.php @@ -637,7 +637,7 @@ class Net_IMAP extends Net_IMAPProtocol { $_mimeParts = array(0 => $part); } else { $part->partID = $_partID; - $_mimeParts = array($_partID => $part); + $_mimeParts[$_partID] = $part; } return;