diff options
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/new.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/new.html.erb b/app/views/issues/new.html.erb index 92f6f251a..40089215c 100644 --- a/app/views/issues/new.html.erb +++ b/app/views/issues/new.html.erb @@ -17,7 +17,7 @@ <%= check_box_tag 'link_copy', '1', @link_copy %> </p> <% end %> - <% if @copy_from && @copy_from.attachments.any? %> + <% if @copy_from && Setting.copy_attachments_on_issue_copy == 'ask' && @copy_from.attachments.any? %> <p> <label for="copy_attachments"><%= l(:label_copy_attachments) %></label> <%= check_box_tag 'copy_attachments', '1', @copy_attachments %> |