]> git.openstreetmap.org Git - nominatim.git/commitdiff
typo in error message
authormarc tobias <mtmail@gmx.net>
Thu, 8 Feb 2018 17:02:19 +0000 (18:02 +0100)
committermarc tobias <mtmail@gmx.net>
Thu, 8 Feb 2018 17:02:19 +0000 (18:02 +0100)
lib/Geocode.php

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