From 1097a3cd8a3ae188f275763ae8d5a9c4d263db7a Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Mon, 26 Apr 2010 09:26:39 -0400
Subject: [PATCH] - don't parse text/html attachment body on download
---
program/steps/mail/get.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc
index a41925a..fdf9013 100644
--- a/program/steps/mail/get.inc
+++ b/program/steps/mail/get.inc
@@ -82,7 +82,7 @@
}
// deliver part content
- if ($ctype_primary == 'text' && $ctype_secondary == 'html') {
+ if ($ctype_primary == 'text' && $ctype_secondary == 'html' && empty($_GET['_download'])) {
// get part body if not available
if (!$part->body)
$part->body = $MESSAGE->get_part_content($part->mime_id);
--
Gitblit v1.9.1