X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9e504a0b33032635c3dc5801b22ca3e7566d6b0b..ebbcf63f0d910458ae255a84de794e3ccede7a7a:/app/views/trace/view.html.erb diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb index 048d92d35..1001cadf9 100644 --- a/app/views/trace/view.html.erb +++ b/app/views/trace/view.html.erb @@ -1,4 +1,4 @@ -

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

+

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

<% if @trace.inserted %> @@ -36,8 +36,8 @@ <%= t'trace.view.tags' %> <% unless @trace.tags.empty? %> - <% @trace.tags.each do |tag| %> - <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %> + <% @trace.tags.each_with_index do |tag, index| %> + <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %><%=', ' if index+1 < @trace.tags.count %> <% end %> <% else %> <%= t'trace.view.none' %>