]> git.openstreetmap.org Git - rails.git/commitdiff
Use the right variable this time...
authorTom Hughes <tom@compton.nu>
Wed, 27 Jan 2010 09:07:25 +0000 (09:07 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 27 Jan 2010 09:07:25 +0000 (09:07 +0000)
app/controllers/diary_entry_controller.rb

index 2284d4933ab9e7db59b6902b56cdccd197c3bcdc..735c51dcd95931c57197e801d8afe2f2554f6122 100644 (file)
@@ -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
   ##