summaryrefslogtreecommitdiffstats
path: root/app/controllers/issues_controller.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-04-14 06:21:03 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-04-14 06:21:03 +0000
commit231282ddcb73e9baaab76496bf2605a80594da36 (patch)
tree7743a570122b38edf288eb275ebd1d9076efa88d /app/controllers/issues_controller.rb
parent09375960d69dcca6dafe4b126b77994f523efba8 (diff)
downloadredmine-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/controllers/issues_controller.rb')
-rw-r--r--app/controllers/issues_controller.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb
index 84ff8fd23..cffb69b61 100644
--- a/app/controllers/issues_controller.rb
+++ b/app/controllers/issues_controller.rb
@@ -235,6 +235,9 @@ class IssuesController < ApplicationController
@trackers = target_projects.map(&:trackers).reduce(:&)
@versions = target_projects.map {|p| p.shared_versions.open}.reduce(:&)
@categories = target_projects.map {|p| p.issue_categories}.reduce(:&)
+ if @copy
+ @attachments_present = @issues.detect {|i| i.attachments.any?}.present?
+ end
@safe_attributes = @issues.map(&:safe_attribute_names).reduce(:&)
render :layout => false if request.xhr?
@@ -250,7 +253,7 @@ class IssuesController < ApplicationController
@issues.each do |issue|
issue.reload
if @copy
- issue = issue.copy
+ issue = issue.copy({}, :attachments => params[:copy_attachments].present?)
end
journal = issue.init_journal(User.current, params[:notes])
issue.safe_attributes = attributes