X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/203e210d3ab8259d0297c11279c0c23b90ec732c..b54fca4f7ee7aec899689c7561d5ee86535a2c40:/lib/DB.php diff --git a/lib/DB.php b/lib/DB.php index 51fd49fc..fe2529b2 100644 --- a/lib/DB.php +++ b/lib/DB.php @@ -135,7 +135,7 @@ class DB try { $stmt = $this->getQueryStatement($sSQL, $aInputVars, $sErrMessage); - while ($val = $stmt->fetchColumn(0)) { // returns first column or false + while (($val = $stmt->fetchColumn(0)) !== false) { // returns first column or false $aVals[] = $val; } } catch (\PDOException $e) {