diff --git a/data/%%AD^AD7^AD71B708%%rss.tpl.php b/data/%%AD^AD7^AD71B708%%rss.tpl.php index 733ee13..dd29a9c 100644 --- a/data/%%AD^AD7^AD71B708%%rss.tpl.php +++ b/data/%%AD^AD7^AD71B708%%rss.tpl.php @@ -1,4 +1,4 @@ - version="1.0" encoding="UTF-8"'; ?> diff --git a/docs/api.php b/docs/api.php index 172f4ba..21f937c 100644 --- a/docs/api.php +++ b/docs/api.php @@ -101,7 +101,7 @@ class api { if(sizeof($this->warnings) == 0){ $bottom_left_latlng = new LatLng($_GET['bottom_left_lat'], $_GET['bottom_left_lng']); $bottom_left_xy = $bottom_left_latlng->toOSRef(); - $top_right_latlng = new LatLng($_GET['bottom_left_lat'], $_GET['bottom_left_lng']); + $top_right_latlng = new LatLng($_GET['top_right_lat'], $_GET['top_right_lng']); $top_right_xy = $top_right_latlng->toOSRef(); $this->applications = Applications::query_area($bottom_left_xy->easting, $bottom_left_xy->northing, $top_right_xy->easting, $top_right_xy->northing); diff --git a/docs/include/application.php b/docs/include/application.php index e2c5293..2101a27 100644 --- a/docs/include/application.php +++ b/docs/include/application.php @@ -114,7 +114,6 @@ class Applications{ where application.x > " . $db->quote($x - $d) . " and application.x < " . $db->quote($x + $d) . " and application.y > " . $db->quote($y - $d) . " and application.y < " . $db->quote($y + $d) . " order by date_scraped desc limit 100"; -print $sql; exit; $application_results = $db->getAll($sql); return applications::load_applications($application_results); } @@ -128,6 +127,7 @@ print $sql; exit; where application.x > " . $db->quote($x1) . " and application.x < " . $db->quote($x2) . " and application.y > " . $db->quote($y1) . " and application.y < " . $db->quote($y2) . " order by date_scraped desc limit 100"; + $application_results = $db->getAll($sql); return applications::load_applications($application_results); }