]> git.openstreetmap.org Git - rails.git/commitdiff
Fixed xml method of old way model.
authorMatt Amos <zerebubuth@gmail.com>
Mon, 13 Oct 2008 14:38:32 +0000 (14:38 +0000)
committerMatt Amos <zerebubuth@gmail.com>
Mon, 13 Oct 2008 14:38:32 +0000 (14:38 +0000)
app/models/old_way.rb

index 13c935fe6dd2cab8cd1e46492cdd67acafeb2ca9..44155d05c8d58367d0656e62743d1be3dbef2e1d 100644 (file)
@@ -96,8 +96,9 @@ class OldWay < ActiveRecord::Base
     el1['id'] = self.id.to_s
     el1['visible'] = self.visible.to_s
     el1['timestamp'] = self.timestamp.xmlschema
     el1['id'] = self.id.to_s
     el1['visible'] = self.visible.to_s
     el1['timestamp'] = self.timestamp.xmlschema
-    el1['user'] = self.user.display_name if self.user.data_public?
+    el1['user'] = self.changeset.user.display_name if self.changeset.user.data_public?
     el1['version'] = self.version.to_s
     el1['version'] = self.version.to_s
+    el1['changeset'] = self.changeset.id.to_s
     
     self.old_nodes.each do |nd| # FIXME need to make sure they come back in the right order
       e = XML::Node.new 'nd'
     
     self.old_nodes.each do |nd| # FIXME need to make sure they come back in the right order
       e = XML::Node.new 'nd'