]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/traces/show.html.erb
Use ActionView's safe_join to avoid using raw when joining arrays of text
[rails.git] / app / views / traces / show.html.erb
index a9978fdc4608ec1df3fb11513c155248d7f63203..07134dbbd4b8599ff4fe874e94900060f4f5f852 100644 (file)
@@ -40,7 +40,7 @@
     <td><%= t ".tags" %></td>
     <td>
     <% 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 %>
       <i><%= t ".none" %></i>
     <% end %>