X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/91139ae014608fe98653496e4c5425f9ebe3bed7..a36f3558dd43dd5a598e36dd21fd5f7d2b4a94f5:/app/controllers/diary_entry_controller.rb?ds=sidebyside diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 52ed87f56..d69d58df3 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -29,7 +29,7 @@ class DiaryEntryController < ApplicationController else @user.preferences.create(:k => "diary.default_language", :v => @diary_entry.language_code) end - redirect_to :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name + redirect_to :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name else render :action => 'edit' end @@ -79,9 +79,9 @@ class DiaryEntryController < ApplicationController if @this_user @title = t 'diary_entry.list.user_title', :user => @this_user.display_name @entry_pages, @entries = paginate(:diary_entries, - :conditions => { + :conditions => { :user_id => @this_user.id, - :visible => true + :visible => true }, :order => 'created_at DESC', :per_page => 20) @@ -110,7 +110,7 @@ class DiaryEntryController < ApplicationController :per_page => 20) else require_user - return + return end elsif params[:nearby] if @user @@ -121,11 +121,11 @@ class DiaryEntryController < ApplicationController :visible => true }, :order => 'created_at DESC', - :per_page => 20) + :per_page => 20) else require_user - return - end + return + end else @title = t 'diary_entry.list.title' @entry_pages, @entries = paginate(:diary_entries, :include => :user, @@ -189,14 +189,14 @@ class DiaryEntryController < ApplicationController def comments @comment_pages, @comments = paginate(:diary_comments, - :conditions => { + :conditions => { :user_id => @this_user, :visible => true }, :order => 'created_at DESC', :per_page => 20) @page = (params[:page] || 1).to_i - end + end private ## # require that the user is a administrator, or fill out a helpful error message