]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/note.rb
Merge branch 'master' into openstreetbugs
[rails.git] / app / models / note.rb
index 0512639e15c5ac4ebf75ff123517013991a7bd79..a2937074c4053d8b4eaaca9a051fb4b67508d0e4 100644 (file)
@@ -4,7 +4,7 @@ class Note < ActiveRecord::Base
   has_many :comments, :class_name => "NoteComment",
                       :foreign_key => :note_id,
                       :order => :created_at,
-                      :conditions => "visible = true AND body IS NOT NULL"
+                      :conditions => { :visible => true }
 
   validates_presence_of :id, :on => :update
   validates_uniqueness_of :id