diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-14 15:55:54 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-14 15:55:54 +0000 |
commit | 002081f2245eb2f75848c0fed0cacf93902d0cf7 (patch) | |
tree | 6d668eaaff685fa824b687e52b001824291316a2 /app/helpers | |
parent | 18ea8357390018ecdcf222789bd5d91e736daa5b (diff) | |
download | redmine-002081f2245eb2f75848c0fed0cacf93902d0cf7.tar.gz redmine-002081f2245eb2f75848c0fed0cacf93902d0cf7.zip |
Change attachment link to download and add a view link for text attachments (#4774).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8645 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/issues_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 49d734452..9698949f2 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -210,7 +210,7 @@ module IssuesHelper old_value = content_tag("strike", old_value) if detail.old_value and detail.value.blank? if detail.property == 'attachment' && !value.blank? && a = Attachment.find_by_id(detail.prop_key) # Link to the attachment if it has not been removed - value = link_to_attachment(a) + value = link_to_attachment(a, :download => true) else value = content_tag("i", h(value)) if value end |