Merge pull request #911 from mtmail/trivial-typo

typo in error message
This commit is contained in:
Sarah Hoffmann 2018-02-10 15:42:28 +01:00 committed by GitHub
commit 7f72c7b5fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,14 +225,14 @@ class Geocode
$aViewbox = $oParams->getStringList('viewboxlbrt'); $aViewbox = $oParams->getStringList('viewboxlbrt');
if ($aViewbox) { if ($aViewbox) {
if (count($aViewbox) != 4) { if (count($aViewbox) != 4) {
userError("Bad parmater 'viewboxlbrt'. Expected 4 coordinates."); userError("Bad parameter 'viewboxlbrt'. Expected 4 coordinates.");
} }
$this->setViewbox($aViewbox); $this->setViewbox($aViewbox);
} else { } else {
$aViewbox = $oParams->getStringList('viewbox'); $aViewbox = $oParams->getStringList('viewbox');
if ($aViewbox) { if ($aViewbox) {
if (count($aViewbox) != 4) { if (count($aViewbox) != 4) {
userError("Bad parmater 'viewbox'. Expected 4 coordinates."); userError("Bad parameter 'viewbox'. Expected 4 coordinates.");
} }
$this->setViewBox($aViewbox); $this->setViewBox($aViewbox);
} else { } else {