From 3b7e00fbdaee197e6ccd832a3f10dbb417373f4c Mon Sep 17 00:00:00 2001 From: alecpl Date: Sun, 19 Jul 2009 19:15:40 +0000 Subject: - don't call FETCH for empty (size=0) message parts --- program/steps/mail/get.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/steps/mail/get.inc') 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); } -- cgit v1.2.3