X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1f2ac59d1d24d75c510412e63070d83af13c6757..827024f7e6c48a11dbe08e569e2cbd852701bd31:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 7f5f4fb3a..a3378a4c9 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -4,7 +4,7 @@ class DiaryEntryController < ApplicationController before_action :authorize_web before_action :set_locale before_action :require_user, :only => [:new, :edit, :comment, :hide, :hidecomment, :subscribe, :unsubscribe] - before_action :lookup_this_user, :only => [:view, :comments] + before_action :lookup_user, :only => [:view, :comments] before_action :check_database_readable before_action :check_database_writable, :only => [:new, :edit, :comment, :hide, :hidecomment, :subscribe, :unsubscribe] before_action :require_administrator, :only => [:hide, :hidecomment] @@ -101,11 +101,11 @@ class DiaryEntryController < ApplicationController def list if params[:display_name] - @this_user = User.active.find_by(:display_name => params[:display_name]) + @user = User.active.find_by(:display_name => params[:display_name]) - if @this_user - @title = t "diary_entry.list.user_title", :user => @this_user.display_name - @entries = @this_user.diary_entries + if @user + @title = t "diary_entry.list.user_title", :user => @user.display_name + @entries = @user.diary_entries else render_unknown_user params[:display_name] return @@ -181,7 +181,7 @@ class DiaryEntryController < ApplicationController end def view - @entry = @this_user.diary_entries.visible.where(:id => params[:id]).first + @entry = @user.diary_entries.visible.where(:id => params[:id]).first if @entry @title = t "diary_entry.view.title", :user => params[:display_name], :title => @entry.title else @@ -205,7 +205,7 @@ class DiaryEntryController < ApplicationController def comments @comment_pages, @comments = paginate(:diary_comments, :conditions => { - :user_id => @this_user, + :user_id => @user, :visible => true }, :order => "created_at DESC",