diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/request/_bubble.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/request/_bubble.rhtml b/app/views/request/_bubble.rhtml index a9e904c0f..862b1058c 100644 --- a/app/views/request/_bubble.rhtml +++ b/app/views/request/_bubble.rhtml @@ -7,7 +7,7 @@ <p> <% attachments.each do |a| %> <% attachment_url = get_attachment_url(:id => incoming_message.info_request_id, :incoming_message_id => incoming_message.id, :part => a.url_part_number, :file_name => a.display_filename) %> - <% if ['application/pdf', 'application/msword', 'application/msexcel', 'text/plain', 'image/tiff'].include?(a.content_type) %> + <% if ['application/pdf', 'application/msword', 'application/msexcel', 'text/plain', 'image/tiff', 'image/gif'].include?(a.content_type) %> <a href="<%=attachment_url%>"><img class="attachment_image" alt="Attachment" src="/images/icon_<%=a.content_type.sub('/', '_')%>_large.png"></a> <% else %> Attachment: |