mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
Replace Hash#merge! with Hash#[]= (#34160).
git-svn-id: http://svn.redmine.org/redmine/trunk@20175 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -666,7 +666,7 @@ class IssuesController < ApplicationController
|
||||
if params[:project_id]
|
||||
redirect_to new_project_issue_path(@issue.project, url_params)
|
||||
else
|
||||
url_params[:issue].merge! :project_id => @issue.project_id
|
||||
url_params[:issue][:project_id] = @issue.project_id
|
||||
redirect_to new_issue_path(url_params)
|
||||
end
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user