diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-07 21:34:35 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-07 21:34:35 +0000 |
commit | 7c4b6a55b61229ef5f2f053c9a88a738497c70cf (patch) | |
tree | 0bdfe35471e6b59eca21ade46a30e081711dc8d9 /activerecord/lib | |
parent | 9d9ac01c7ddf1d3af1ee2151e2977d3ee9e48294 (diff) | |
download | rails-7c4b6a55b61229ef5f2f053c9a88a738497c70cf.tar.gz rails-7c4b6a55b61229ef5f2f053c9a88a738497c70cf.tar.bz2 rails-7c4b6a55b61229ef5f2f053c9a88a738497c70cf.zip |
Rollback [4917]. Closes #785.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5067 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-x | activerecord/lib/active_record/validations.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/validations.rb b/activerecord/lib/active_record/validations.rb index c9d4740670..43552e092c 100755 --- a/activerecord/lib/active_record/validations.rb +++ b/activerecord/lib/active_record/validations.rb @@ -333,8 +333,7 @@ module ActiveRecord attr_accessor *(attr_names.map { |n| "#{n}_confirmation" }) validates_each(attr_names, configuration) do |record, attr_name, value| - confirm = record.send("#{attr_name}_confirmation") - record.errors.add(attr_name, configuration[:message]) unless value.nil? || value == confirm + record.errors.add(attr_name, configuration[:message]) unless record.send("#{attr_name}_confirmation").nil? or value == record.send("#{attr_name}_confirmation") end end |