]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/old_way.rb
Cope with MESSAGES_DOMAIN not being defined
[rails.git] / app / models / old_way.rb
index 425478a5b93a81586d6849081fc296f4583bf680..dc5715693af0328e5e7d0a8b005dd346528f2eb3 100644 (file)
@@ -30,7 +30,7 @@ class OldWay < ActiveRecord::Base
     save!
     clear_aggregation_cache
     clear_association_cache
     save!
     clear_aggregation_cache
     clear_association_cache
-    @attributes.update(OldWay.find(:first, :conditions => ['id = ? AND timestamp = ?', self.id, self.timestamp]).instance_variable_get('@attributes'))
+    @attributes.update(OldWay.find(:first, :conditions => ['id = ? AND timestamp = ?', self.id, self.timestamp], :order => "version desc").instance_variable_get('@attributes'))
 
     # ok, you can touch from here on
 
 
     # ok, you can touch from here on