]> git.openstreetmap.org Git - rails.git/commitdiff
Fix tag splitting.
authorTom Hughes <tom@compton.nu>
Sat, 24 Nov 2007 01:00:53 +0000 (01:00 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 24 Nov 2007 01:00:53 +0000 (01:00 +0000)
app/models/old_node.rb

index 464849157b90504aa7f25722be0dcb85fbabf931..2c3e93b2075fc5de263923694f50221123734ec1 100644 (file)
@@ -36,7 +36,14 @@ class OldNode < GeoRecord
     el1['lat'] = self.lat.to_s
     el1['lon'] = self.lon.to_s
     el1['user'] = self.user.display_name if self.user.data_public?
     el1['lat'] = self.lat.to_s
     el1['lon'] = self.lon.to_s
     el1['user'] = self.user.display_name if self.user.data_public?
-    Node.split_tags(el1, self.tags)
+
+    Tags.split(self.tags) do |k,v|
+      el2 = XML::Node.new('tag')
+      el2['k'] = k.to_s
+      el2['v'] = v.to_s
+      el1 << el2
+    end
+
     el1['visible'] = self.visible.to_s
     el1['timestamp'] = self.timestamp.xmlschema
     return el1
     el1['visible'] = self.visible.to_s
     el1['timestamp'] = self.timestamp.xmlschema
     return el1