summaryrefslogtreecommitdiff
path: root/rt/share/html/REST/1.0/Forms/attachment/default
diff options
context:
space:
mode:
Diffstat (limited to 'rt/share/html/REST/1.0/Forms/attachment/default')
-rw-r--r--rt/share/html/REST/1.0/Forms/attachment/default6
1 files changed, 4 insertions, 2 deletions
diff --git a/rt/share/html/REST/1.0/Forms/attachment/default b/rt/share/html/REST/1.0/Forms/attachment/default
index 3f9bd1b..80039ce 100644
--- a/rt/share/html/REST/1.0/Forms/attachment/default
+++ b/rt/share/html/REST/1.0/Forms/attachment/default
@@ -2,7 +2,7 @@
%#
%# COPYRIGHT:
%#
-%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC
+%# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC
%# <sales@bestpractical.com>
%#
%# (Except where explicitly superseded by other copyright notices)
@@ -67,8 +67,10 @@ unless ( $attachment->Id eq $id ) {
my @arglist = split( '/', $args || "" );
my $content;
-if ( @argslist and $arglist[0] eq 'content' ) {
+if ( @arglist and $arglist[0] eq 'content' ) {
$c = $attachment->OriginalContent;
+ $r->content_type($attachment->ContentType)
+ if $attachment->ContentType !~ /^text\//;
} else {
my @data;
push @data, [ id => "attachment/" . $attachment->Id ];