]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/relation.rb
Prevent scrollbars showing up on the edit view
[rails.git] / app / models / relation.rb
index 908651b646da768af2b4cff8d521220bb59ff735..e5ea85d6d02788eadec62b9768e6c19120b04854 100644 (file)
@@ -2,7 +2,8 @@ class Relation < ActiveRecord::Base
   require 'xml/libxml'
   
   include ConsistencyValidations
-  
+  include NotRedactable
+
   self.table_name = "current_relations"
 
   belongs_to :changeset
@@ -66,6 +67,10 @@ class Relation < ActiveRecord::Base
     # and manually set to false before the actual delete.
     relation.visible = true
 
+    # Start with no tags
+    relation.tags = Hash.new
+
+    # Add in any tags from the XML
     pt.find('tag').each do |tag|
       raise OSM::APIBadXMLError.new("relation", pt, "tag is missing key") if tag['k'].nil?
       raise OSM::APIBadXMLError.new("relation", pt, "tag is missing value") if tag['v'].nil?