callbacks that return false should cause save to return false

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5226 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2006-10-04 15:43:31 +00:00
parent 53737eadd6
commit b8ff69fcdd
1 changed files with 2 additions and 2 deletions

View File

@ -1765,8 +1765,8 @@ module ActiveRecord #:nodoc:
private
def create_or_update
raise ReadOnlyRecord if readonly?
if new_record? then create else update end
true
result = new_record? ? create : update
result != false
end
# Updates the associated record with values matching those of the instance attributes.