From: Sarah Hoffmann Date: Mon, 16 Apr 2012 13:33:13 +0000 (+0200) Subject: allow slashes in house numbers X-Git-Tag: v2.0.0~85 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/aaca88d5a6e60c61bd6e6a441a013554dce76f7c allow slashes in house numbers --- diff --git a/website/search.php b/website/search.php index 88248cea..7c0838c9 100755 --- a/website/search.php +++ b/website/search.php @@ -817,7 +817,7 @@ $sPlaceIDs = join(',',$aPlaceIDs); // Now they are indexed look for a house attached to a street we found - $sHouseNumberRegex = '\\\\m'.str_replace(' ','[-, ]',$aSearch['sHouseNumber']).'\\\\M'; + $sHouseNumberRegex = '\\\\m'.str_replace(' ','[-,/ ]',$aSearch['sHouseNumber']).'\\\\M'; $sSQL = "select place_id from placex where parent_place_id in (".$sPlaceIDs.") and housenumber ~* E'".$sHouseNumberRegex."'"; if (sizeof($aExcludePlaceIDs)) {