X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3af16f6337b52546297e7e09a1aba9b0e1df7e15..1ea946636b7828ffa079b2461d87728f8dba863b:/app/views/browse/_way.html.erb
diff --git a/app/views/browse/_way.html.erb b/app/views/browse/_way.html.erb
index ed206c59b..137d529ff 100644
--- a/app/views/browse/_way.html.erb
+++ b/app/views/browse/_way.html.erb
@@ -12,20 +12,20 @@
<% unless way.containing_relation_members.empty? %>
<%= t "browse.part_of" %>
-
+
<%= render :partial => "containing_relation", :collection => way.containing_relation_members.uniq %>
<% end %>
<% unless way.way_nodes.empty? %>
<%= t ".nodes" %>
-
+
<% way.way_nodes.each do |wn| %>
-
<%= link_to printable_name(wn.node), { :action => "node", :id => wn.node_id.to_s }, { :class => link_class("node", wn.node), :title => link_title(wn.node), :rel => link_follow(wn.node) } %>
<% related_ways = wn.node.ways.reject { |w| w.id == wn.way_id } %>
<% if related_ways.size > 0 then %>
- (<%= raw t ".also_part_of", :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(printable_name(w), { :action => "way", :id => w.id.to_s }, { :class => link_class("way", w), :title => link_title(w) }) }.to_sentence %>)
+ (<%= t ".also_part_of_html", :count => related_ways.size, :related_ways => to_sentence(related_ways.map { |w| link_to(printable_name(w), { :action => "way", :id => w.id.to_s }, { :class => link_class("way", w), :title => link_title(w) }) }) %>)
<% end %>
<% end %>