diff options
author | alecpl <alec@alec.pl> | 2009-07-19 19:15:40 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-07-19 19:15:40 +0000 |
commit | 3b7e00fbdaee197e6ccd832a3f10dbb417373f4c (patch) | |
tree | 12279720836ba7097773c58d2d0b6b4075877616 /program | |
parent | d4436e78614eaf72e57427e1024b715d68df2954 (diff) |
- don't call FETCH for empty (size=0) message parts
Diffstat (limited to 'program')
-rw-r--r-- | program/steps/mail/func.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/get.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index a942c1a44..448663519 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -987,7 +987,7 @@ function rcmail_message_body($attrib) { if ($part->type == 'headers') $out .= rcmail_message_headers(sizeof($header_attrib) ? $header_attrib : NULL, $part->headers); - else if ($part->type == 'content') + else if ($part->type == 'content' && $part->size) { if (empty($part->ctype_parameters) || empty($part->ctype_parameters['charset'])) $part->ctype_parameters['charset'] = $MESSAGE->headers->charset; diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc index cf66914d7..f86c152c6 100644 --- a/program/steps/mail/get.inc +++ b/program/steps/mail/get.inc @@ -113,7 +113,7 @@ else if ($pid = get_input_value('_part', RCUBE_INPUT_GET)) { // turn off output buffering and print part content if ($part->body) echo $part->body; - else + else if ($part->size) $IMAP->get_message_part($MESSAGE->uid, $part->mime_id, $part, true); } |