X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d4a461dc26ce20d2ae806f126c0b43a7214d2156..a70898be6dde1e9e9f61f90f8dc9b2c18a6f9287:/app/views/user/view.html.erb diff --git a/app/views/user/view.html.erb b/app/views/user/view.html.erb index 91f85f305..137a390ba 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 @user.administrator? -%> + <% if current_user and current_user.administrator? -%>
<%= t 'user.view.email address' %> <%= @this_user.email %> <% unless @this_user.creation_ip.nil? -%> @@ -171,10 +171,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 %> @@ -182,10 +182,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} %>