Don't show deleted comments in a user's diary comment list

This commit is contained in:
Tom Hughes 2012-05-15 18:58:13 +01:00
parent 58559d50da
commit fc7ac5d086

View file

@ -188,7 +188,10 @@ class DiaryEntryController < ApplicationController
def comments
@comment_pages, @comments = paginate(:diary_comments,
:conditions => { :user_id => @this_user },
:conditions => {
:user_id => @this_user,
:visible => true
},
:order => 'created_at DESC',
:per_page => 20)
@page = (params[:page] || 1).to_i