]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/Geocode.php
adapt CONTRIBUTING.md to new test locations and tools
[nominatim.git] / lib / Geocode.php
index c634182939ca3e43ef0e4f33ad1aeb636c7728e2..b12f96079c5d9f9295d6c15ca192bd0dce72a227 100644 (file)
@@ -1737,7 +1737,7 @@ class Geocode
         $aClassType = getClassTypesWithImportance();
         $aRecheckWords = preg_split('/\b[\s,\\-]*/u', $sQuery);
         foreach ($aRecheckWords as $i => $sWord) {
-            if (!preg_match('/\pL/', $sWord)) unset($aRecheckWords[$i]);
+            if (!preg_match('/[\pL\pN]/', $sWord)) unset($aRecheckWords[$i]);
         }
 
         if (CONST_Debug) {