Fix has_*_part() methods so they return same result no matter what

prefer_html option value is
pull/62/head
Aleksander Machniak 12 years ago
parent 574928200f
commit 0ef894ec29

@ -208,8 +208,8 @@ class rcube_message
// check all message parts // check all message parts
foreach ($this->mime_parts as $part) { foreach ($this->mime_parts as $part) {
if ($part->mimetype == 'text/html' || ($enriched && $part->mimetype == 'text/enriched')) { if ($part->mimetype == 'text/html' || ($enriched && $part->mimetype == 'text/enriched')) {
// Skip if part is an attachment // Skip if part is an attachment, don't use is_attachment() here
if ($this->is_attachment($part)) { if ($part->filename) {
continue; continue;
} }
@ -248,8 +248,8 @@ class rcube_message
// check all message parts // check all message parts
foreach ($this->mime_parts as $part) { foreach ($this->mime_parts as $part) {
if ($part->mimetype == 'text/plain') { if ($part->mimetype == 'text/plain') {
// Skip if part is an attachment // Skip if part is an attachment, don't use is_attachment() here
if ($this->is_attachment($part)) { if ($part->filename) {
continue; continue;
} }

Loading…
Cancel
Save