summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-10-12 12:08:27 +0200
committerAleksander Machniak <alec@alec.pl>2012-10-12 12:08:27 +0200
commit5f409583008dfbfa4b5e160f7ec9b1cc7a4766d2 (patch)
tree0289aac20a9771b7c531823d5823f34beb65e5ad
parent974f9db47963a65c6b2b652709a4c0e17ada76c5 (diff)
Fix displaying of multipart/alternative messages with empty parts (#1488750)
-rw-r--r--CHANGELOG1
-rw-r--r--program/include/rcube_message.php4
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b3aef606c..ee5e17402 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
+- Fix displaying of multipart/alternative messages with empty parts (#1488750)
- Fix threaded list sorting on PHP < 5.2.9 (#1488748)
- Plugin API: Add 'email_list' argument for identities data in user_create hook
- Integrated zipdownload plugin to download all attachments (#1445509)
diff --git a/program/include/rcube_message.php b/program/include/rcube_message.php
index fe2fcf354..7bf95d1c5 100644
--- a/program/include/rcube_message.php
+++ b/program/include/rcube_message.php
@@ -371,6 +371,10 @@ class rcube_message
foreach ($structure->parts as $p => $sub_part) {
$sub_mimetype = $sub_part->mimetype;
+ // skip empty parts
+ if (!$sub_part->size)
+ continue;
+
// check if sub part is
if ($sub_mimetype == 'text/plain')
$plain_part = $p;