From: Tom Hughes Date: Wed, 27 Jan 2010 09:07:25 +0000 (+0000) Subject: Use the right variable this time... X-Git-Tag: live~6345^2~11 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8e9a542482339cf6853a94ed207ea123316c14c7?ds=sidebyside Use the right variable this time... --- diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 2284d4933..735c51dcd 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", :display_name => entry.diary_entry.user.display_name, :id => comment.diary_entry.id + redirect_to :action => "view", :display_name => comment.diary_entry.user.display_name, :id => comment.diary_entry.id end private ##