diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-03 23:24:31 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-03 23:24:31 +0000 |
commit | 5ac11f2de36e301c936cc552cffa334bf6ec2932 (patch) | |
tree | 2f30987ccf14777ab9b4d2258934f78008606ab7 /activerecord | |
parent | 846f0d5ab65eee84d53179d8496f357af03bea2c (diff) | |
download | rails-5ac11f2de36e301c936cc552cffa334bf6ec2932.tar.gz rails-5ac11f2de36e301c936cc552cffa334bf6ec2932.tar.bz2 rails-5ac11f2de36e301c936cc552cffa334bf6ec2932.zip |
Fixed that the overwritten respond_to? method didn't take two parameters like the original #391
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@327 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/associations/association_collection.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations/association_collection.rb b/activerecord/lib/active_record/associations/association_collection.rb index 6303ada87b..6283f3dc28 100644 --- a/activerecord/lib/active_record/associations/association_collection.rb +++ b/activerecord/lib/active_record/associations/association_collection.rb @@ -22,8 +22,8 @@ module ActiveRecord @collection.to_ary end - def respond_to?(symbol) - proxy_respond_to?(symbol) || [].respond_to?(symbol) + def respond_to?(symbol, include_priv = false) + proxy_respond_to?(symbol, include_priv) || [].respond_to?(symbol, include_priv) end def loaded? |