From: Matt Amos Date: Mon, 13 Oct 2008 14:38:32 +0000 (+0000) Subject: Fixed xml method of old way model. X-Git-Tag: live~7577^2~277 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/b38b2c2d0fcbcf94b668f3405c12f939c7318103 Fixed xml method of old way model. --- diff --git a/app/models/old_way.rb b/app/models/old_way.rb index 13c935fe6..44155d05c 100644 --- a/app/models/old_way.rb +++ b/app/models/old_way.rb @@ -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['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['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'