summaryrefslogtreecommitdiff
path: root/program/steps/mail/get.inc
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-07-31 11:01:44 +0200
committerAleksander Machniak <alec@alec.pl>2013-07-31 11:01:44 +0200
commit92e7ce666322edae449e2001e0eb23473f701be9 (patch)
tree163fd9329181c265543d543a413723c15198992d /program/steps/mail/get.inc
parent80112d07497ce0f69ce4b60a22b75b603f8bd5b0 (diff)
parentae853367edd2720e2f899aa273ca8ac1a08f0079 (diff)
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/steps/mail/get.inc')
-rw-r--r--program/steps/mail/get.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc
index 3334caa8b..e0c4e2911 100644
--- a/program/steps/mail/get.inc
+++ b/program/steps/mail/get.inc
@@ -357,7 +357,8 @@ else if (strlen($part_id)) {
header("Content-Length: $size");
}
- $sent = $RCMAIL->storage->get_message_part($MESSAGE->uid, $part->mime_id, $part, true);
+ // 8th argument disables re-formatting of text/* parts (#1489267)
+ $sent = $RCMAIL->storage->get_message_part($MESSAGE->uid, $part->mime_id, $part, true, null, false, 0, false);
}
}