diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-07 13:48:07 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-07 13:48:07 +0000 |
commit | a0c495b953b84d90f5c87f089eaefbf310b9dfeb (patch) | |
tree | 80206825ef5f1674b9330aa2688e3bb0d3c48f24 /app/views/issues | |
parent | b0bd50620195b19dcc1b7f2f82de73fceaa13692 (diff) | |
download | redmine-a0c495b953b84d90f5c87f089eaefbf310b9dfeb.tar.gz redmine-a0c495b953b84d90f5c87f089eaefbf310b9dfeb.zip |
Displays thumbnails of attached images of the issue view (#1006).
This behaviour can be turned on/off in Settings -> Display (off by default). Thumbnail size can be configured there too.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9933 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/show.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index 4f53592b0..5a60b0326 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -81,7 +81,7 @@ end %> <%= textilizable @issue, :description, :attachments => @issue.attachments %> </div> <% end %> -<%= link_to_attachments @issue %> +<%= link_to_attachments @issue, :thumbnails => true %> <% end -%> <%= call_hook(:view_issues_show_description_bottom, :issue => @issue) %> |