diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-11-12 10:41:22 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-11-12 10:41:22 +0100 |
commit | 2a5afe1cdeb177642d10567687df460fd220802d (patch) | |
tree | 04362d69fcd79801387e501b27cdf3e8b8a2330a /program/include/rcube_imap.php | |
parent | 4340d5e63424ffdea2788701c5539c9cdc162eda (diff) |
BINARY extension can't be used with $formatting=true on binary content
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r-- | program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index a89fd164d..f2645f60f 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -2074,7 +2074,7 @@ class rcube_imap extends rcube_storage if ($o_part && $o_part->size) { $body = $this->conn->handlePartBody($this->folder, $uid, true, - $part ? $part : 'TEXT', $o_part->encoding, $print, $fp); + $part ? $part : 'TEXT', $o_part->encoding, $print, $fp, $o_part->ctype_primary == 'text'); } if ($fp || $print) { |