From: Tom Hughes Date: Thu, 17 Nov 2011 09:53:21 +0000 (+0000) Subject: Filter out the current way correctly X-Git-Tag: live~6048 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/c1db05321a4451d6fb2d148e2b4e86bd7b13732e Filter out the current way correctly --- diff --git a/app/views/browse/_way_details.html.erb b/app/views/browse/_way_details.html.erb index 8354ceaec..648009f56 100644 --- a/app/views/browse/_way_details.html.erb +++ b/app/views/browse/_way_details.html.erb @@ -10,7 +10,7 @@ <% way_details.way_nodes.each do |wn| %> <%= link_to h(printable_name(wn.node)), { :action => "node", :id => wn.node_id.to_s }, :class => link_class('node', wn.node), :title => link_title(wn.node) %> - <% related_ways = wn.node.ways.reject { |w| w.id == way_details.id } %> + <% related_ways = wn.node.ways.reject { |w| w.id == wn.way_id } %> <% if related_ways.size > 0 then %> (<%= raw t 'browse.way_details.also_part_of', :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(h(printable_name(w)), { :action => "way", :id => w.id.to_s }, :class => link_class('way', w), :title => link_title(w) ) }.to_sentence %>) <% end %>