aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-07-08 01:09:23 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-07-08 01:09:23 +0000
commit80b5331c0f2eba19e53b5c9bc8e9b3e5faffc499 (patch)
tree54ac0dabc902769fb1a27fa0602a0c012bf126ec /activerecord/lib/active_record/base.rb
parent1060fe2d723cc2ce4b3bfff308eab5360090c595 (diff)
downloadrails-80b5331c0f2eba19e53b5c9bc8e9b3e5faffc499.tar.gz
rails-80b5331c0f2eba19e53b5c9bc8e9b3e5faffc499.tar.bz2
rails-80b5331c0f2eba19e53b5c9bc8e9b3e5faffc499.zip
Rollback [4584], bad test. Reopens #3819.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4586 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rwxr-xr-xactiverecord/lib/active_record/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 94b6645a17..1c8c819efa 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -1390,7 +1390,7 @@ module ActiveRecord #:nodoc:
end
def extract_options_from_args!(args) #:nodoc:
- args.last.is_a?(Hash) ? args.pop.dup : {}
+ args.last.is_a?(Hash) ? args.pop : {}
end
VALID_FIND_OPTIONS = [ :conditions, :include, :joins, :limit, :offset,