From: Brian Quinion Date: Mon, 28 Mar 2011 11:37:17 +0000 (+0000) Subject: limit fallback to pure number housenumbers X-Git-Tag: v2.0.0~155 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/64661947109e6ed45a1527529b079ddab26d23e5 limit fallback to pure number housenumbers --- diff --git a/website/search.php b/website/search.php index 3b5d55ac..6596fca4 100755 --- a/website/search.php +++ b/website/search.php @@ -816,7 +816,7 @@ } // Fallback to the road - if (!sizeof($aPlaceIDs)) + if (!sizeof($aPlaceIDs) && preg_match('/^[0-9]+$/', $aSearch['sHouseNumber'])) { $aPlaceIDs = $aRoadPlaceIDs; }