summaryrefslogtreecommitdiff
path: root/program/include/rcube_message.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-10-17 10:35:10 +0200
committerAleksander Machniak <alec@alec.pl>2012-10-17 10:35:10 +0200
commit5fbfde8fdf53d54dbaf7883c10ed275ebe3a921c (patch)
treecb5d24cb94b782b23dc3554fcc625beb8095df8b /program/include/rcube_message.php
parent5f6c71ae36b73e5f94543eec2f61874cf46e9c62 (diff)
Fix the fix for empty text parts handling (#1488757)
Diffstat (limited to 'program/include/rcube_message.php')
-rw-r--r--program/include/rcube_message.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/program/include/rcube_message.php b/program/include/rcube_message.php
index 7bf95d1c5..4e1b5a0c2 100644
--- a/program/include/rcube_message.php
+++ b/program/include/rcube_message.php
@@ -371,9 +371,10 @@ class rcube_message
foreach ($structure->parts as $p => $sub_part) {
$sub_mimetype = $sub_part->mimetype;
- // skip empty parts
- if (!$sub_part->size)
+ // skip empty text parts
+ if (!$sub_part->size && preg_match('#^text/(plain|html|enriched)$#', $sub_mimetype)) {
continue;
+ }
// check if sub part is
if ($sub_mimetype == 'text/plain')