X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FREST%2F1.0%2FForms%2Fattachment%2Fdefault;h=a1aea022efe4b73f7e5312e7edf5a05932b3ca89;hb=7322f2afedcc2f427e997d1535a503613a83f088;hp=b53f6fdc900b548ec16dc4bbecb02b8e2663a128;hpb=fc6209f398899f0211cfcedeb81a3cd65e04a941;p=freeside.git diff --git a/rt/share/html/REST/1.0/Forms/attachment/default b/rt/share/html/REST/1.0/Forms/attachment/default index b53f6fdc9..a1aea022e 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-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -54,7 +54,7 @@ $args => undef <%INIT> my @data; my ($c, $o, $k, $e) = ("", [], {}, ""); -my $attachment = new RT::Attachment $session{CurrentUser}; +my $attachment = RT::Attachment->new($session{CurrentUser}); $attachment->Load($id); unless ( $attachment->Id ) { @@ -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 ];