summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-09-07 12:31:52 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-09-07 12:31:52 +0000
commitd5058de8feef7bcb9daa256b2502ccd58c74a184 (patch)
treed22c612ac4189146a79603309026e4d6cf484405 /roundcubemail/program
parentf973722de683aaa549c9114546281f597c4ee61d (diff)
- Fix displaying multipart/alternative messages with only one part (#1487938)
git-svn-id: https://svn.roundcube.net/trunk@5191 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/include/rcube_message.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_message.php b/roundcubemail/program/include/rcube_message.php
index 2ec386c6b..af6c61c4f 100644
--- a/roundcubemail/program/include/rcube_message.php
+++ b/roundcubemail/program/include/rcube_message.php
@@ -299,8 +299,10 @@ class rcube_message
$structure->type = 'content';
$this->parts[] = &$structure;
}
- // message contains alternative parts
- else if ($mimetype == 'multipart/alternative' && is_array($structure->parts)) {
+ // message contains (more than one!) alternative parts
+ else if ($mimetype == 'multipart/alternative'
+ && is_array($structure->parts) && count($structure->parts) > 1
+ ) {
// get html/plaintext parts
$plain_part = $html_part = $print_part = $related_part = null;