X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/674589ce2c196fa2c6d249e09e374e9ff090bb77..8bd001f1282b7a33a71c0565504e160dbe567d5d:/app/controllers/trace_controller.rb diff --git a/app/controllers/trace_controller.rb b/app/controllers/trace_controller.rb index 5dd49c6be..f97e5ecd2 100644 --- a/app/controllers/trace_controller.rb +++ b/app/controllers/trace_controller.rb @@ -33,7 +33,7 @@ class TraceController < ApplicationController @title = if target_user.nil? t "trace.list.public_traces" elsif current_user && current_user == target_user - t "trace.list.your_traces" + t "trace.list.my_traces" else t "trace.list.public_traces_from", :user => target_user.display_name end @@ -192,11 +192,7 @@ class TraceController < ApplicationController trace.visible = false trace.save flash[:notice] = t "trace.delete.scheduled_for_deletion" - if current_user.administrator? || current_user.moderator? - redirect_to :action => :list, :display_name => trace.user.display_name - else - redirect_to :action => :list, :display_name => current_user.display_name - end + redirect_to :action => :list, :display_name => trace.user.display_name end rescue ActiveRecord::RecordNotFound head :not_found