提交 796295db 编写于 作者: T Tobias Lütke

ActiveRecord::RecordInvalid now states which validations failed in its default error message


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3544 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 0633bb86
*SVN*
* ActiveRecord::RecordInvalid now states which validations failed in its default error message [Tobias Luetke]
* Using AssociationCollection#build with arrays of hashes should call build, not create [DHH]
* Remove definition of reloadable? from ActiveRecord::Base to make way for new Reloadable code. [Nicholas Seckar]
......
......@@ -8,9 +8,9 @@ module ActiveRecord
# end
class RecordInvalid < ActiveRecordError
attr_reader :record
def initialize(record, *args)
def initialize(record)
@record = record
super(*args)
super("Validation failed: #{@record.errors.full_messages.join(", ")}")
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册