X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/0d16fd57d46a4aaa1c170d79772e549bfadf288a..d71c95e775f2c792ce53d73e2dbb5ca299b9327e:/app/controllers/changeset_controller.rb?ds=sidebyside diff --git a/app/controllers/changeset_controller.rb b/app/controllers/changeset_controller.rb index 959957463..3d5c8dd4b 100644 --- a/app/controllers/changeset_controller.rb +++ b/app/controllers/changeset_controller.rb @@ -374,12 +374,7 @@ class ChangesetController < ApplicationController elsif params['minlon'] and params['minlat'] and params['maxlon'] and params['maxlat'] bbox = h(params['minlon']) + ',' + h(params['minlat']) + ',' + h(params['maxlon']) + ',' + h(params['maxlat']) else - #TODO: fix bugs in location determination for history tab (and other tabs) then uncomment this redirect - #redirect_to :action => 'list' - - # For now just render immediately, and skip the db - render - return + raise OSM::APIBadUserInput.new("Bounding box must be supplied for /history/rss") end conditions = conditions_bbox(bbox);