Fixed diary entry and comment hiding for mass assignment protection
This commit is contained in:
parent
3e180e745c
commit
58559d50da
1 changed files with 2 additions and 2 deletions
|
@ -176,13 +176,13 @@ class DiaryEntryController < ApplicationController
|
|||
|
||||
def hide
|
||||
entry = DiaryEntry.find(params[:id])
|
||||
entry.update_attributes(:visible => false)
|
||||
entry.update_attributes({:visible => false}, :without_protection => true)
|
||||
redirect_to :action => "list", :display_name => entry.user.display_name
|
||||
end
|
||||
|
||||
def hidecomment
|
||||
comment = DiaryComment.find(params[:comment])
|
||||
comment.update_attributes(:visible => false)
|
||||
comment.update_attributes({:visible => false}, :without_protection => true)
|
||||
redirect_to :action => "view", :display_name => comment.diary_entry.user.display_name, :id => comment.diary_entry.id
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue