From: Tom Hughes Date: Wed, 27 Jan 2010 09:02:27 +0000 (+0000) Subject: Specify the user when redirecting back to a diary entry after X-Git-Tag: live~6325^2~12 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/2330a1a378c2338ec443089cfa1eb9e714c07643 Specify the user when redirecting back to a diary entry after hiding a comment. --- diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 55035d700..2284d4933 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -187,7 +187,7 @@ class DiaryEntryController < ApplicationController def hidecomment comment = DiaryComment.find(params[:comment]) comment.update_attributes(:visible => false) - redirect_to :action => "view", :id => comment.diary_entry.id + redirect_to :action => "view", :display_name => entry.diary_entry.user.display_name, :id => comment.diary_entry.id end private ##