]> git.openstreetmap.org Git - rails.git/commitdiff
Fixed dumb-arse bug with wrong variable name. Added tag cleanup and checking on nodes...
authorMatt Amos <zerebubuth@gmail.com>
Tue, 28 Jul 2009 16:09:13 +0000 (16:09 +0000)
committerMatt Amos <zerebubuth@gmail.com>
Tue, 28 Jul 2009 16:09:13 +0000 (16:09 +0000)
app/controllers/amf_controller.rb

index 20053644d8635177a32ffd3c175328bb496ee29c..aa030ca92c60edfa2a54ba0dab1e14ee2b039c38 100644 (file)
@@ -614,8 +614,8 @@ class AmfController < ApplicationController
       user = getuser(usertoken)
       if !user then return -1,"You are not logged in, so the way could not be saved." end
       if pointlist.length < 2 then return -2,"Server error - way is only #{points.length} points long." end
-      if !tags_ok(tags) then return -1,"One of the tags is invalid. Please pester Adobe to fix Flash on Linux." end
-      tags = strip_non_xml_chars tags
+      if !tags_ok(attributes) then return -1,"One of the tags is invalid. Please pester Adobe to fix Flash on Linux." end
+      attributes = strip_non_xml_chars attributes
 
       originalway = originalway.to_i
       pointlist.collect! {|a| a.to_i }
@@ -640,6 +640,11 @@ class AmfController < ApplicationController
           node.lat = lat
           node.lon = lon
           node.tags = a[4]
+
+          # fixup node tags in a way as well
+          if !tags_ok(node.tags) then return -1,"One of the tags is invalid. Please pester Adobe to fix Flash on Linux." end
+          node.tags = strip_non_xml_chars node.tags
+
           node.tags.delete('created_by')
           node.version = version
           if id <= 0