From d27e919be191ad6d6b2ff6f08b3e12d006155260 Mon Sep 17 00:00:00 2001 From: bastien ollier Date: Fri, 16 Dec 2022 21:06:45 +0100 Subject: [PATCH] modif si pas de source --- gateways/GatewaySources.php | 1 + 1 file changed, 1 insertion(+) diff --git a/gateways/GatewaySources.php b/gateways/GatewaySources.php index 8b6847b..e083181 100644 --- a/gateways/GatewaySources.php +++ b/gateways/GatewaySources.php @@ -28,6 +28,7 @@ class GatewaySources $query = "SELECT * FROM sources"; $this->con->executeQuery($query, array()); $results=$this->con->getResults(); + $listeSources = array(); Foreach ($results as $source){ $listeSources[] = new Sources($source["link"]); }