diff options
author | thomascube <thomas@roundcube.net> | 2008-06-05 17:35:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-06-05 17:35:12 +0000 |
commit | cfe4a6baf462c0befa06b283366945130cabfa5b (patch) | |
tree | 83d74e1c6fa50a71c4e893359630de247bc5c05a /program/include | |
parent | 077070381f4e97e98c5edf3ce6b456c4c57d057d (diff) |
Fix structure parsing and html output for multipart messages
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_imap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 43c311735..574ed6cc2 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -1074,7 +1074,7 @@ class rcube_imap $struct->ctype_primary = 'multipart'; // find first non-array entry - for ($i=1; count($part); $i++) + for ($i=1; $i<count($part); $i++) if (!is_array($part[$i])) { $struct->ctype_secondary = strtolower($part[$i]); @@ -1085,7 +1085,7 @@ class rcube_imap $struct->parts = array(); for ($i=0, $count=0; $i<count($part); $i++) - if (is_array($part[$i]) && count($part[$i]) > 5) + if (is_array($part[$i]) && count($part[$i]) > 3) $struct->parts[] = $this->_structure_part($part[$i], ++$count, $struct->mime_id); return $struct; |