]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/old_way_controller.rb
Make /user/new handle already logged in users better
[rails.git] / app / controllers / old_way_controller.rb
index 5ea1a0497d7cba35a85fe8a0c03eb3de6fc6cf41..3836d4ab7c5167f8675d7c11db003521bb69c2d8 100644 (file)
@@ -1,6 +1,7 @@
 class OldWayController < ApplicationController
   require 'xml/libxml'
 
 class OldWayController < ApplicationController
   require 'xml/libxml'
 
+  skip_before_filter :verify_authenticity_token
   before_filter :check_api_readable
   after_filter :compress_output
   around_filter :api_call_handle_error, :api_call_timeout
   before_filter :check_api_readable
   after_filter :compress_output
   around_filter :api_call_handle_error, :api_call_timeout
@@ -18,7 +19,7 @@ class OldWayController < ApplicationController
   end
   
   def version
   end
   
   def version
-    if old_way = OldWay.where(:id => params[:id], :version => params[:version]).first
+    if old_way = OldWay.where(:way_id => params[:id], :version => params[:version]).first
       response.last_modified = old_way.timestamp
 
       doc = OSM::API.new.get_xml_doc
       response.last_modified = old_way.timestamp
 
       doc = OSM::API.new.get_xml_doc