X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/986f1c61fa115b7cfd5bef4a108c984da79fec85..88bf67b0923b1376ae6320597c70ce65e5fb1073:/app/controllers/old_way_controller.rb?ds=sidebyside diff --git a/app/controllers/old_way_controller.rb b/app/controllers/old_way_controller.rb index 5ea1a0497..3836d4ab7 100644 --- a/app/controllers/old_way_controller.rb +++ b/app/controllers/old_way_controller.rb @@ -1,6 +1,7 @@ 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 @@ -18,7 +19,7 @@ class OldWayController < ApplicationController 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