]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/ParameterParser.php
ParameterParser: getInt with empty string value throws exception
[nominatim.git] / lib / ParameterParser.php
index 2eed1629b04742ad274c6ac9f5cf8d9bf1ebfbd3..7d8d5dc8fef69a9be0d771ceef02647710d29873 100644 (file)
@@ -23,7 +23,7 @@ class ParameterParser
 
     public function getInt($sName, $bDefault = false)
     {
-        if (!isset($this->aParams[$sName]) || strlen($this->aParams[$sName]) == 0) {
+        if (!isset($this->aParams[$sName])) {
             return $bDefault;
         }