Fixed diary entry and comment hiding for mass assignment protection

This commit is contained in:
Tom Hughes 2012-05-13 18:44:54 +01:00
parent 3e180e745c
commit 58559d50da

View file

@ -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