aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-07-24 04:55:16 +0000
committerRick Olson <technoweenie@gmail.com>2006-07-24 04:55:16 +0000
commit971e03f24e1121a2fe03beab23b0370a64fcfc37 (patch)
treee7c5df3357054e5a30d0b71d616036f5abe0ac86 /activerecord/lib/active_record/associations.rb
parent04d9e94e88be0ba076b0fef980e8bde8e25061d9 (diff)
downloadrails-971e03f24e1121a2fe03beab23b0370a64fcfc37.tar.gz
rails-971e03f24e1121a2fe03beab23b0370a64fcfc37.tar.bz2
rails-971e03f24e1121a2fe03beab23b0370a64fcfc37.zip
Allow #count through a has_many association to accept :include. [Dan Peterson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4618 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rwxr-xr-xactiverecord/lib/active_record/associations.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 5eb6495b9d..192c7b7a5f 100755
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -17,7 +17,6 @@ module ActiveRecord
class HasManyThroughAssociationPolymorphicError < ActiveRecordError #:nodoc:
def initialize(owner_class_name, reflection, source_reflection)
- source_reflection = source_reflection
super("Cannot have a has_many :through association '#{owner_class_name}##{reflection.name}' on the polymorphic object '#{source_reflection.class_name}##{source_reflection.name}'.")
end
end