fixed not always completly parsed multipart messages

This commit is contained in:
Ralf Becker 2007-07-10 13:42:02 +00:00
parent 0c608d5e07
commit 4bf278daea

View File

@ -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;