]> source.dussan.org Git - redmine.git/commitdiff
Don't show the "reassign" option when deleting issues from different projects (#24722).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 31 Dec 2016 15:26:00 +0000 (15:26 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 31 Dec 2016 15:26:00 +0000 (15:26 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@16121 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/issues_controller.rb
app/views/issues/destroy.html.erb

index 2a69d57ffc075c0aa5808900e0e31b83f8171281..0b99eb526a44d85b38e2145ac68c58bd44d97f06 100644 (file)
@@ -356,7 +356,7 @@ class IssuesController < ApplicationController
       when 'nullify'
         time_entries.update_all(:issue_id => nil)
       when 'reassign'
-        reassign_to = @project.issues.find_by_id(params[:reassign_to_id])
+        reassign_to = @project && @project.issues.find_by_id(params[:reassign_to_id])
         if reassign_to.nil?
           flash.now[:error] = l(:error_issue_not_found_in_project)
           return
index 4a0631e68db5dd18d790f9732e4b9e7f05d205f0..83da014cd8c718c23f6c85ffd9008ea4479ac1bb 100644 (file)
@@ -7,8 +7,10 @@
 <p>
 <label><%= radio_button_tag 'todo', 'destroy', true %> <%= l(:text_destroy_time_entries) %></label><br />
 <label><%= radio_button_tag 'todo', 'nullify', false %> <%= l(:text_assign_time_entries_to_project) %></label><br />
+<% if @project %>
 <label><%= radio_button_tag 'todo', 'reassign', false, :onchange => 'if (this.checked) { $("#reassign_to_id").focus(); }' %> <%= l(:text_reassign_time_entries) %></label>
 <%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("#todo_reassign").attr("checked", true);' %>
+<% end %>
 </p>
 </div>
 <%= submit_tag l(:button_apply) %>