]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #910 from mtmail/shorten-line-in-update-php
authorSarah Hoffmann <lonvia@denofr.de>
Sat, 10 Feb 2018 14:43:41 +0000 (15:43 +0100)
committerGitHub <noreply@github.com>
Sat, 10 Feb 2018 14:43:41 +0000 (15:43 +0100)
shorten line to please PHP style guide

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 {