]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/node.rb
Update to use libxml 1.0.0 gem.
[rails.git] / app / models / node.rb
index cec755f4765bfc35e9679256934512be093f74da..af88a117d83879ef0eb21d438a11d211cb670dc7 100644 (file)
@@ -57,8 +57,7 @@ class Node < ActiveRecord::Base
   # Read in xml as text and return it's Node object representation
   def self.from_xml(xml, create=false)
     begin
-      p = XML::Parser.new
-      p.string = xml
+      p = XML::Parser.string(xml)
       doc = p.parse
   
       node = Node.new