From e9ab43cd302926f5741f9f1cd16ffb79e0f88482 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sun, 7 Jun 2009 03:06:09 +0000 Subject: [PATCH 1/1] The list_bbox_rss won't work at all without a bbox. Thow an error when it's not supplied --- app/controllers/changeset_controller.rb | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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); -- 2.43.2