From: Sarah Hoffmann Date: Tue, 23 Apr 2013 19:25:56 +0000 (+0200) Subject: fix inconsistency between getNearestNamendRoadFeature() and house number search X-Git-Tag: v2.2.0~81 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/2df0cafb24fe32b3fbb9385c989da3bb6ad7b37c?ds=sidebyside fix inconsistency between getNearestNamendRoadFeature() and house number search --- diff --git a/website/search.php b/website/search.php index 387a79de..a849ab81 100755 --- a/website/search.php +++ b/website/search.php @@ -941,7 +941,7 @@ } } if ($aSearch['sCountryCode']) $aTerms[] = "country_code = '".pg_escape_string($aSearch['sCountryCode'])."'"; - if ($aSearch['sHouseNumber']) $aTerms[] = "address_rank in (26,27)"; + if ($aSearch['sHouseNumber']) $aTerms[] = "address_rank between 22 and 27"; if ($aSearch['fLon'] && $aSearch['fLat']) { $aTerms[] = "ST_DWithin(centroid, ST_SetSRID(ST_Point(".$aSearch['fLon'].",".$aSearch['fLat']."),4326), ".$aSearch['fRadius'].")";