Don't show the "reassign" option when deleting issues from different projects (#24722).

git-svn-id: http://svn.redmine.org/redmine/trunk@16121 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2016-12-31 15:26:00 +00:00
parent 1b30422354
commit 1bda8ce940
2 changed files with 3 additions and 1 deletions

View 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