X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/cbddfcde5b1613949d173ccd751efc4018969a18..d365338c4f94ef0d005d6c096a9754a5259e1e0b:/lib/ParameterParser.php diff --git a/lib/ParameterParser.php b/lib/ParameterParser.php index ae252d67..32a848b9 100644 --- a/lib/ParameterParser.php +++ b/lib/ParameterParser.php @@ -119,10 +119,10 @@ class ParameterParser return $aLangPrefOrder; } - public function hasSetAny($aParams) + public function hasSetAny($aParamNames) { - foreach ($aParams as $sParam) { - if ($this->getBool($sParam)) { + foreach ($aParamNames as $sName) { + if ($this->getBool($sName)) { return true; } }