From: Sarah Hoffmann Date: Thu, 5 Feb 2015 20:13:33 +0000 (+0100) Subject: disable housenumber-specific search when no address details are provided X-Git-Tag: v2.4.0~39 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/c9f3d7d08b01aa9ec28468937df55ab21308e133?hp=--cc disable housenumber-specific search when no address details are provided --- c9f3d7d08b01aa9ec28468937df55ab21308e133 diff --git a/lib/Geocode.php b/lib/Geocode.php index 2c736475..a8fe11e2 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -1240,7 +1240,7 @@ $aTerms = array(); $aOrder = array(); - if ($aSearch['sHouseNumber']) + if ($aSearch['sHouseNumber'] && sizeof($aSearch['aAddress'])) { $sHouseNumberRegex = '\\\\m'.$aSearch['sHouseNumber'].'\\\\M'; $aOrder[] = "exists(select place_id from placex where parent_place_id = search_name.place_id and transliteration(housenumber) ~* E'".$sHouseNumberRegex."' limit 1) desc";