summaryrefslogtreecommitdiff
path: root/rt/share/html/Download/CustomFieldValue/dhandler
diff options
context:
space:
mode:
Diffstat (limited to 'rt/share/html/Download/CustomFieldValue/dhandler')
-rw-r--r--rt/share/html/Download/CustomFieldValue/dhandler5
1 files changed, 4 insertions, 1 deletions
diff --git a/rt/share/html/Download/CustomFieldValue/dhandler b/rt/share/html/Download/CustomFieldValue/dhandler
index 218de33..d8c7039 100644
--- a/rt/share/html/Download/CustomFieldValue/dhandler
+++ b/rt/share/html/Download/CustomFieldValue/dhandler
@@ -63,7 +63,10 @@ unless ($OCFV->id) {
my $content_type = $OCFV->ContentType || 'text/plain';
-unless (RT->Config->Get('TrustHTMLAttachments')) {
+if (RT->Config->Get('AlwaysDownloadAttachments')) {
+ $r->headers_out->{'Content-Disposition'} = "attachment; filename=" . $OCFV->Content;
+}
+elsif (!RT->Config->Get('TrustHTMLAttachments')) {
$content_type = 'text/plain' if ($content_type =~ /^text\/html/i);
}