X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b13278c8150acba6686e73751fafd7108c30c2a9..6a5749c55c7a93a25054dc6dd76e1c4b88e37b2c:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index b425ef4b6..e0d6e44cd 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -69,7 +69,8 @@ class DiaryEntryController < ApplicationController end else @title = "Users' diaries" - @entry_pages, @entries = paginate(:diary_entries, + @entry_pages, @entries = paginate(:diary_entries, :include => :user, + :conditions => "users.visible = 1", :order => 'created_at DESC', :per_page => 20) end @@ -90,7 +91,9 @@ class DiaryEntryController < ApplicationController render :nothing => true, :status => :not_found end else - @entries = DiaryEntry.find(:all, :order => 'created_at DESC', :limit => 20) + @entries = DiaryEntry.find(:all, :include => :user, + :conditions => "users.visible = 1", + :order => 'created_at DESC', :limit => 20) @title = "OpenStreetMap diary entries" @description = "Recent diary entries from users of OpenStreetMap" @link = "http://www.openstreetmap.org/diary"