]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib-php/ParameterParser.php
PHP 8 behaves slightly different with in_array and usort
[nominatim.git] / lib-php / ParameterParser.php
index 98b95388ce678f7d52a2711dc18b29829414801d..070be36c24a3856448ef3de965298690001dac33 100644 (file)
@@ -70,7 +70,7 @@ class ParameterParser
             return $sDefault;
         }
 
-        if (!in_array($this->aParams[$sName], $aValues)) {
+        if (!in_array($this->aParams[$sName], $aValues, true)) {
             userError("Parameter '$sName' must be one of: ".join(', ', $aValues));
         }