X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Fcontact.php;h=25aab5883a817b4499cad0e846f4edf1bfef12e1;hb=47051a8cfc285b2324230d620c7ddb41cd61c00c;hp=de4dc8254821d753b8acc6ef28aaffb388de5752;hpb=37d4290c9eae09546c22b257c589c7e66ad3a1f3;p=readifood.git diff --git a/lib/contact.php b/lib/contact.php index de4dc82..25aab58 100644 --- a/lib/contact.php +++ b/lib/contact.php @@ -31,13 +31,13 @@ header(sprintf("Location: http%s://%s/%s/search/%s", ($_SERVER['HTTPS']) ? "s" : "", $_SERVER['HTTP_HOST'], $module, urlencode($_POST['search_contact']))); exit; } - else if ($_POST['area_id']) { + else if ($_POST['show_in_area']) { $q = new AreaQuery; $area = $q->findOneById($_POST['area_id']); header(sprintf("Location: http%s://%s/%s/in/area/%s/%d", ($_SERVER['HTTPS']) ? "s" : "", $_SERVER['HTTP_HOST'], $module, urlencode($area->getName()), $_POST['area_id'])); exit; } - else if ($_POST['city_id']) { + else if ($_POST['show_in_city']) { $q = new CityQuery; $city = $q->findOneById($_POST['city_id']); header(sprintf("Location: http%s://%s/%s/in/city/%s/%d", ($_SERVER['HTTPS']) ? "s" : "", $_SERVER['HTTP_HOST'], $module, urlencode($city->getName()), $_POST['city_id'])); @@ -142,7 +142,7 @@ option("area_id", $area->getId(), get_area_displayname($area)); } echo "\n"; - echo "\n"; + submit("show_in_area", "Show"); } function show_contact_cities_form($city_id = null) { @@ -167,7 +167,7 @@ option("city_id", $city->getId(), get_city_displayname($city), $city_id); } echo "\n"; - echo "\n"; + submit("show_in_city", "Show"); } function show_contact_search_form() {