From b54fca4f7ee7aec899689c7561d5ee86535a2c40 Mon Sep 17 00:00:00 2001 From: Eldar Yusupov Date: Sat, 26 Oct 2019 20:18:46 +0300 Subject: [PATCH] Handle zero in getCol() --- lib/DB.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.5