preserve chained method punctuation

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4483 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2006-06-21 23:09:01 +00:00
parent 38d1a4aa09
commit d399ee9332

View File

@@ -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