diff options
author | Jamis Buck <jamis@37signals.com> | 2006-06-05 15:41:24 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2006-06-05 15:41:24 +0000 |
commit | f97978ad9137b7a9213fa9d4a58071ac6d23bc7e (patch) | |
tree | a713fe316f8828339dbe9805aa71e2620ae2759a /activerecord/lib | |
parent | 149f5cad856f14b53780619a3efc0258cdd4759b (diff) | |
download | rails-f97978ad9137b7a9213fa9d4a58071ac6d23bc7e.tar.gz rails-f97978ad9137b7a9213fa9d4a58071ac6d23bc7e.tar.bz2 rails-f97978ad9137b7a9213fa9d4a58071ac6d23bc7e.zip |
Use explicit delegation instead of method aliasing for AR::Base.to_param -> AR::Base.id. (closes #5299)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4437 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-x | activerecord/lib/active_record/base.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index c90e4d2162..dee460d9c5 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -1409,7 +1409,10 @@ module ActiveRecord #:nodoc: end # Enables Active Record objects to be used as URL parameters in Action Pack automatically. - alias_method :to_param, :id + def to_param + # can't use alias_method here, because method 'id' optimizes itself on the fly + id + end def id_before_type_cast #:nodoc: read_attribute_before_type_cast(self.class.primary_key) |