X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/1ff7e3ac71f0e31d6c4d26673d6357a76ef957aa..eec9e29c963bc20e4e968d5aefd7cc22ca1cbeba:/app/views/traces/show.html.erb diff --git a/app/views/traces/show.html.erb b/app/views/traces/show.html.erb index 728b29c45..e65245369 100644 --- a/app/views/traces/show.html.erb +++ b/app/views/traces/show.html.erb @@ -1,5 +1,5 @@ <% content_for :heading do %> -

<%= t ".heading", :name => h(@trace.name) %>

+

<%= t ".heading", :name => @trace.name %>

<% end %> <% if Settings.status != "gpx_offline" %> @@ -30,17 +30,17 @@ <% end %> <%= t ".owner" %> - <%= link_to h(@trace.user.display_name), user_path(@trace.user) %> + <%= link_to @trace.user.display_name, user_path(@trace.user) %> <%= t ".description" %> - <%= h(@trace.description) %> + <%= @trace.description %> <%= t ".tags" %> <% unless @trace.tags.empty? %> - <%= raw(@trace.tags.collect { |tag| link_to tag.tag, :controller => "traces", :action => "index", :tag => tag.tag, :id => nil }.join(", ")) %> + <%= safe_join(@trace.tags.collect { |tag| link_to tag.tag, :controller => "traces", :action => "index", :tag => tag.tag, :id => nil }, ", ") %> <% else %> <%= t ".none" %> <% end %>