X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/45e7c9a32e08446fd087580d84b2e11eadc1683d..d0de9967b9bd21c8e7c03e060626c4486b149fb2:/app/views/api/relations/full.xml.builder diff --git a/app/views/api/relations/full.xml.builder b/app/views/api/relations/full.xml.builder index e7e6c92bc..e23061727 100644 --- a/app/views/api/relations/full.xml.builder +++ b/app/views/api/relations/full.xml.builder @@ -1,7 +1,7 @@ xml.instruct! xml.osm(OSM::API.new.xml_root_attributes) do |osm| - osm << (render(:partial => "api/map/node", :collection => @nodes) || "") - osm << (render(:partial => "api/map/way", :collection => @ways) || "") - osm << (render(:partial => "api/map/relation", :collection => @relations) || "") + osm << (render(@nodes) || "") + osm << (render(@ways) || "") + osm << (render(@relations) || "") end