1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-22 08:21:14 +00:00

Removes a call to alias_method_chain.

git-svn-id: http://svn.redmine.org/redmine/trunk@15657 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2016-07-14 07:34:12 +00:00
parent 2457f5914d
commit 106f6dcace

View File

@ -409,7 +409,7 @@ class Issue < ActiveRecord::Base
end end
# Overrides assign_attributes so that project and tracker get assigned first # Overrides assign_attributes so that project and tracker get assigned first
def assign_attributes_with_project_and_tracker_first(new_attributes, *args) def assign_attributes(new_attributes, *args)
return if new_attributes.nil? return if new_attributes.nil?
attrs = new_attributes.dup attrs = new_attributes.dup
attrs.stringify_keys! attrs.stringify_keys!
@ -419,10 +419,8 @@ class Issue < ActiveRecord::Base
send "#{attr}=", attrs.delete(attr) send "#{attr}=", attrs.delete(attr)
end end
end end
send :assign_attributes_without_project_and_tracker_first, attrs, *args super attrs, *args
end end
# Do not redefine alias chain on reload (see #4838)
alias_method_chain(:assign_attributes, :project_and_tracker_first) unless method_defined?(:assign_attributes_without_project_and_tracker_first)
def attributes=(new_attributes) def attributes=(new_attributes)
assign_attributes new_attributes assign_attributes new_attributes