]> git.openstreetmap.org Git - rails.git/commitdiff
Filter out the current way correctly
authorTom Hughes <tom@compton.nu>
Thu, 17 Nov 2011 09:53:21 +0000 (09:53 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 17 Nov 2011 09:53:21 +0000 (09:53 +0000)
app/views/browse/_way_details.html.erb

index 8354ceaec2973a23d0eeddf1c6f57c7e570665db..648009f565d5d8290df08bad1c0aba3aeb5c1b42 100644 (file)
@@ -10,7 +10,7 @@
           <% way_details.way_nodes.each do |wn| %>
             <tr><td>
               <%= 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 %>