From d399ee93329a72584009239f0fc010701361ba24 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Wed, 21 Jun 2006 23:09:01 +0000 Subject: preserve chained method punctuation git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4483 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/lib/active_record/callbacks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activerecord') diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb index d219efe727..cef954ea39 100755 --- a/activerecord/lib/active_record/callbacks.rb +++ b/activerecord/lib/active_record/callbacks.rb @@ -281,7 +281,7 @@ module ActiveRecord # existing objects that have a record. def after_validation_on_update() end - def valid_with_callbacks #:nodoc: + def valid_with_callbacks? #:nodoc: return false if callback(:before_validation) == false if new_record? then result = callback(:before_validation_on_create) else result = callback(:before_validation_on_update) end return false if result == false -- cgit v1.2.3