Fix the fix for empty text parts handling (#1488757)

pull/36/merge
Aleksander Machniak 12 years ago
parent 5f6c71ae36
commit 5fbfde8fdf

@ -371,9 +371,10 @@ class rcube_message
foreach ($structure->parts as $p => $sub_part) { foreach ($structure->parts as $p => $sub_part) {
$sub_mimetype = $sub_part->mimetype; $sub_mimetype = $sub_part->mimetype;
// skip empty parts // skip empty text parts
if (!$sub_part->size) if (!$sub_part->size && preg_match('#^text/(plain|html|enriched)$#', $sub_mimetype)) {
continue; continue;
}
// check if sub part is // check if sub part is
if ($sub_mimetype == 'text/plain') if ($sub_mimetype == 'text/plain')

Loading…
Cancel
Save