From 7369b7427c3df17314cfa5e9f69bedd78f760047 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 2 Dec 2010 19:23:38 +0000 Subject: [PATCH] Remove bogus trailing slash from GPX namespace URL --- app/controllers/api_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb index d66fbb28f..95cc88869 100644 --- a/app/controllers/api_controller.rb +++ b/app/controllers/api_controller.rb @@ -46,7 +46,7 @@ class ApiController < ApplicationController root = XML::Node.new 'gpx' root['version'] = '1.0' root['creator'] = 'OpenStreetMap.org' - root['xmlns'] = "http://www.topografix.com/GPX/1/0/" + root['xmlns'] = "http://www.topografix.com/GPX/1/0" doc.root = root -- 2.43.2