X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b598979374985b8c62fac14588d685e29eac20a4..3e4255eb2cc9f8b260ecab6d80c783723cf89d88:/app/views/user/view.html.erb diff --git a/app/views/user/view.html.erb b/app/views/user/view.html.erb index 1628e2364..68f27ca38 100644 --- a/app/views/user/view.html.erb +++ b/app/views/user/view.html.erb @@ -3,42 +3,42 @@ <%= user_image @this_user %>

<%= @this_user.display_name %><%= role_icons(@this_user) %>

- <% if @user and @this_user.id == @user.id %> + <% if current_user and @this_user.id == current_user.id %>
- <% if @user and @this_user.id != @user.id %> + <% if current_user and @this_user.id != current_user.id %>
- <%= link_to new_issue_url(reportable_id: @this_user.id, reportable_type: @this_user.class.name, reported_user_id: @this_user.id), :title => t('user.view.report') do%> + <%= link_to new_issue_url(reportable_id: @this_user.id, reportable_type: @this_user.class.name, referer: request.fullpath), :title => t('user.view.report') do%>  ⚐ <% end %>
@@ -165,7 +166,7 @@ - <% if @user and @user.administrator? -%> + <% if current_user and current_user.administrator? -%>
<%= t 'user.view.email address' %> <%= @this_user.email %> <% unless @this_user.creation_ip.nil? -%> @@ -178,10 +179,10 @@ <% end %> - <% if @user and @this_user.id == @user.id %> + <% if current_user and @this_user.id == current_user.id %> <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
-

<%= raw(t 'user.view.if set location', :settings_link => (link_to t('user.view.settings_link_text'), :controller => 'user', :action => 'account', :display_name => @user.display_name)) %>

+

<%= raw(t 'user.view.if set location', :settings_link => (link_to t('user.view.settings_link_text'), :controller => 'user', :action => 'account', :display_name => current_user.display_name)) %>

<% else %> <% content_for :head do %> @@ -189,10 +190,10 @@ <% end %> <% user_data = { - :lon => @user.home_lon, - :lat => @user.home_lat, + :lon => current_user.home_lon, + :lat => current_user.home_lat, :icon => image_path("marker-red.png"), - :description => render(:partial => "popup", :object => @user, :locals => {:type => "your location"}) + :description => render(:partial => "popup", :object => current_user, :locals => {:type => "your location"}) } %> <%= content_tag "div", "", :id => "map", :class => "content_map", :data => {:user => user_data} %>