Don't show deleted comments in a user's diary comment list
This commit is contained in:
parent
58559d50da
commit
fc7ac5d086
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue