diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-04-14 06:21:03 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-04-14 06:21:03 +0000 |
commit | 231282ddcb73e9baaab76496bf2605a80594da36 (patch) | |
tree | 7743a570122b38edf288eb275ebd1d9076efa88d /app/views | |
parent | 09375960d69dcca6dafe4b126b77994f523efba8 (diff) | |
download | redmine-231282ddcb73e9baaab76496bf2605a80594da36.tar.gz redmine-231282ddcb73e9baaab76496bf2605a80594da36.zip |
Fixed MissingFeatureException: let user choose to copy attachments or not when bulk copying issues.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9405 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/bulk_edit.html.erb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/views/issues/bulk_edit.html.erb b/app/views/issues/bulk_edit.html.erb index 0263ab916..e81676ada 100644 --- a/app/views/issues/bulk_edit.html.erb +++ b/app/views/issues/bulk_edit.html.erb @@ -60,6 +60,13 @@ <p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit('issue', custom_field, @projects) %></p> <% end %> +<% if @copy && @attachments_present %> +<p> + <label for='copy_attachments'><%= l(:label_copy_attachments) %></label> + <%= check_box_tag 'copy_attachments', '1', true %> +</p> +<% end %> + <%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> </div> |