From: Sarah Hoffmann Date: Wed, 12 Oct 2016 18:21:12 +0000 (+0200) Subject: fix typo in error message X-Git-Tag: v3.0.0~106 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/c72e6a93dc13ffd2f585ae6fb6234ddd5229d2ea fix typo in error message --- diff --git a/lib/Geocode.php b/lib/Geocode.php index 4063eda6..14a43c5c 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -880,7 +880,7 @@ class Geocode foreach ($aPhrases as $iPhrase => $sPhrase) { $aPhrase = chksql( $this->oDB->getRow("select make_standard_name('".pg_escape_string($sPhrase)."') as string"), - "Cannot nomralize query string (is it an UTF-8 string?)" + "Cannot normalize query string (is it a UTF-8 string?)" ); if (trim($aPhrase['string'])) { $aPhrases[$iPhrase] = $aPhrase;