From c350291ae7f9f0014d25575a1f0f13070c0b1c0c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 25 Feb 2006 23:32:24 +0000 Subject: Fixed that reflections would bleed across class boundaries in single-table inheritance setups (closes #3796) [lars@pind.com] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3650 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/lib/active_record/reflection.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/reflection.rb b/activerecord/lib/active_record/reflection.rb index 2f73300abf..774df46246 100644 --- a/activerecord/lib/active_record/reflection.rb +++ b/activerecord/lib/active_record/reflection.rb @@ -13,10 +13,12 @@ module ActiveRecord def create_reflection(macro, name, options, active_record) case macro when :has_many, :belongs_to, :has_one, :has_and_belongs_to_many - reflections[name] = AssociationReflection.new(macro, name, options, active_record) + reflection = AssociationReflection.new(macro, name, options, active_record) when :composed_of - reflections[name] = AggregateReflection.new(macro, name, options, active_record) + reflection = AggregateReflection.new(macro, name, options, active_record) end + write_inheritable_hash :reflections, name => reflection + reflection end def reflections -- cgit v1.2.3