From 3c767ef265539bbdfa180d011cca0617f0b282f6 Mon Sep 17 00:00:00 2001 From: memespring Date: Tue, 22 May 2007 17:19:39 +0000 Subject: [PATCH] fixed lambeth --- docs/scrapers/lambeth.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/scrapers/lambeth.php b/docs/scrapers/lambeth.php index c70d3f2..821fe86 100644 --- a/docs/scrapers/lambeth.php +++ b/docs/scrapers/lambeth.php @@ -23,13 +23,13 @@ if (isset($_GET['year'])){ } //search url - $search_url = "http://planning.lambeth.gov.uk/publicaccess/dc/DcApplication/application_searchresults.aspx?searchtype=WEEKLY&selWeeklyListRange=#daterange&weektype=VAL"; + $search_url = "http://planning.lambeth.gov.uk/publicaccess/tdc/DcApplication/application_searchresults.aspx?searchtype=WEEKLY&selWeeklyListRange=#daterange&weektype=VAL"; $date_range = "{$day}%2F{$month}%2F{$year}%7C{$day}%2F{$month}%2F{$year}"; $search_url = str_replace("#daterange", $date_range, $search_url); //comment and info urls - $info_url_base = "http://planning.lambeth.gov.uk/publicaccess/dc/DcApplication/application_detailview.aspx?caseno="; - $comment_url_base = "http://planning.lambeth.gov.uk/publicaccess/dc/DcApplication/application_comments_entryform.aspx?caseno="; + $info_url_base = "http://planning.lambeth.gov.uk/publicaccess/tdc/DcApplication/application_detailview.aspx?caseno="; + $comment_url_base = "http://planning.lambeth.gov.uk/publicaccess/tdc/DcApplication/application_comments_entryform.aspx?caseno="; //grab urls $applications = scrape_applications_publicaccess($search_url, $info_url_base, $comment_url_base);