X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2df0cafb24fe32b3fbb9385c989da3bb6ad7b37c..ddc46acd266c26aefb5131eeede1d9056c19ee5b:/website/search.php diff --git a/website/search.php b/website/search.php index a849ab81..395790a2 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 between 22 and 27"; + if ($aSearch['sHouseNumber']) $aTerms[] = "address_rank between 16 and 27"; if ($aSearch['fLon'] && $aSearch['fLat']) { $aTerms[] = "ST_DWithin(centroid, ST_SetSRID(ST_Point(".$aSearch['fLon'].",".$aSearch['fLat']."),4326), ".$aSearch['fRadius'].")";