X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7f598ab412674ce5a78da98c54aa2fe2e4a05792..1e3a35f9713631122dbe736d56aff5e5326aca52:/app/views/notes/index.gpx.builder

diff --git a/app/views/notes/index.gpx.builder b/app/views/notes/index.gpx.builder
index 7a3046027..58da357da 100644
--- a/app/views/notes/index.gpx.builder
+++ b/app/views/notes/index.gpx.builder
@@ -1,7 +1,9 @@
 xml.instruct!
 
-xml.gpx("version" => "1.1", 
+xml.gpx("version" => "1.1",
+        "creator" => "OpenStreetMap.org",
+        "xmlns" => "http://www.topografix.com/GPX/1/1",
         "xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance",
         "xsi:schemaLocation" => "http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd") do
-  xml << render(:partial => "note", :collection => @notes)
+  xml << (render(:partial => "note", :collection => @notes) || "")
 end