]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib-php/Geocode.php
move special hack for US states to legacy tokenizer
[nominatim.git] / lib-php / Geocode.php
index 0f76a9c472749652823f8f4b8a8f0f306f8b2edb..43d10368eb9292ffcd90d2fcc8103b4a07ded395 100644 (file)
@@ -506,13 +506,6 @@ class Geocode
             userError('Query string is not UTF-8 encoded.');
         }
 
-        // Conflicts between US state abreviations and various words for 'the' in different languages
-        if (isset($this->aLangPrefOrder['name:en'])) {
-            $sQuery = preg_replace('/(^|,)\s*il\s*(,|$)/i', '\1illinois\2', $sQuery);
-            $sQuery = preg_replace('/(^|,)\s*al\s*(,|$)/i', '\1alabama\2', $sQuery);
-            $sQuery = preg_replace('/(^|,)\s*la\s*(,|$)/i', '\1louisiana\2', $sQuery);
-        }
-
         // Do we have anything that looks like a lat/lon pair?
         $sQuery = $oCtx->setNearPointFromQuery($sQuery);