X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/868caeaf1b9572ed0c1fc3b6728ce294e940d5e5..ccab565a4a73213742be716ea796677829f1a91c:/lib/Geocode.php diff --git a/lib/Geocode.php b/lib/Geocode.php index f2b99bdb..d5647c76 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -535,9 +535,9 @@ class Geocode // 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*(,|$)/', '\1illinois\2', $sQuery); - $sQuery = preg_replace('/(^|,)\s*al\s*(,|$)/', '\1alabama\2', $sQuery); - $sQuery = preg_replace('/(^|,)\s*la\s*(,|$)/', '\1louisiana\2', $sQuery); + $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?