diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-03-07 20:58:32 +0000 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-03-07 20:58:32 +0000 |
commit | bb063b2f1b3e5b6fb2a4732cb696929f1652c555 (patch) | |
tree | 9cb4de7d9284d59d9a555154bdc73b8c78f2c1c0 /activerecord/lib/active_record/associations | |
parent | cee3f9b36d01e6d54e0bd4c2fd06bee369bfff12 (diff) | |
download | rails-bb063b2f1b3e5b6fb2a4732cb696929f1652c555.tar.gz rails-bb063b2f1b3e5b6fb2a4732cb696929f1652c555.tar.bz2 rails-bb063b2f1b3e5b6fb2a4732cb696929f1652c555.zip |
Fix test_has_many_association_through_a_has_many_association_with_nonstandard_primary_keys
Diffstat (limited to 'activerecord/lib/active_record/associations')
-rw-r--r-- | activerecord/lib/active_record/associations/through_association.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/through_association.rb b/activerecord/lib/active_record/associations/through_association.rb index 5768915eaf..ae2c8b65ed 100644 --- a/activerecord/lib/active_record/associations/through_association.rb +++ b/activerecord/lib/active_record/associations/through_association.rb @@ -82,7 +82,7 @@ module ActiveRecord foreign_key = reflection.foreign_key else key = reflection.foreign_key - foreign_key = reflection.association_primary_key + foreign_key = reflection.active_record_primary_key end if reflection == through_reflection_chain.last |