X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/57a05a40fcc81048c2df1f78e024d4671acd46b1..d6755356e04026bf98ddb735899873a7c74b58ea:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 8daeac5de..6c7c9658b 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -8,6 +8,10 @@ class DiaryEntryController < ApplicationController before_filter :check_database_writable, :only => [:new, :edit] before_filter :require_administrator, :only => [:hide, :hidecomment] + caches_action :list, :view, :layout => false + caches_action :rss, :layout => true + cache_sweeper :diary_sweeper, :only => [:new, :edit, :comment, :hide, :hidecomment] + def new @title = t 'diary_entry.new.title' @@ -162,7 +166,7 @@ class DiaryEntryController < ApplicationController :visible => true }) if @entry - @title = t 'diary_entry.view.title', :user => params[:display_name] + @title = t 'diary_entry.view.title', :user => params[:display_name], :title => @entry.title else @title = t 'diary_entry.no_such_entry.title', :id => params[:id] render :action => 'no_such_entry', :status => :not_found @@ -183,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 => comment.diary_entry.user.display_name, :id => comment.diary_entry.id end private ##