fix typo in error message

This commit is contained in:
Sarah Hoffmann
2016-10-12 20:21:12 +02:00
parent c0b4411337
commit c72e6a93dc

View File

@@ -880,7 +880,7 @@ class Geocode
foreach ($aPhrases as $iPhrase => $sPhrase) { foreach ($aPhrases as $iPhrase => $sPhrase) {
$aPhrase = chksql( $aPhrase = chksql(
$this->oDB->getRow("select make_standard_name('".pg_escape_string($sPhrase)."') as string"), $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'])) { if (trim($aPhrase['string'])) {
$aPhrases[$iPhrase] = $aPhrase; $aPhrases[$iPhrase] = $aPhrase;