aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-20 14:25:26 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-20 14:25:26 +0000
commitdabf90624932ef49214383b0e0bd7d3b80fbc39f (patch)
tree9b40743e5692e553ca04fc8ef81406544d9568de /activerecord/lib/active_record/base.rb
parent37a46151ec14ae11f5306d997b822f30be7a69d3 (diff)
downloadrails-dabf90624932ef49214383b0e0bd7d3b80fbc39f.tar.gz
rails-dabf90624932ef49214383b0e0bd7d3b80fbc39f.tar.bz2
rails-dabf90624932ef49214383b0e0bd7d3b80fbc39f.zip
Added type conversion before saving a record, so string-based values like "10.0" arent left for the database to convert #820 [dave@cherryville.org]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@928 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 f85cad1f98..a60741fc21 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -1241,7 +1241,7 @@ module ActiveRecord #:nodoc:
def attributes_with_quotes(include_primary_key = true)
columns_hash = self.class.columns_hash
- attrs_quoted = @attributes.inject({}) do |attrs_quoted, pair|
+ attrs_quoted = attributes.inject({}) do |attrs_quoted, pair|
attrs_quoted[pair.first] = quote(pair.last, columns_hash[pair.first]) unless !include_primary_key && pair.first == self.class.primary_key
attrs_quoted
end