X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ef7f3d800cbdd49b692df10d312e5fd880e2e938..396f2e28dd27d514f7882c3918103b12764038de:/app/models/diary_comment.rb diff --git a/app/models/diary_comment.rb b/app/models/diary_comment.rb index b38240db0..2796eb612 100644 --- a/app/models/diary_comment.rb +++ b/app/models/diary_comment.rb @@ -2,13 +2,13 @@ class DiaryComment < ActiveRecord::Base belongs_to :user belongs_to :diary_entry - validates_presence_of :body - validates_associated :diary_entry + validates :body, :presence => true + validates :diary_entry, :user, :associated => true after_save :spam_check def body - RichText.new(read_attribute(:body_format), read_attribute(:body)) + RichText.new(self[:body_format], self[:body]) end def digest