From e0d8cf18b42263152f634fbaca0a1d13c3d895c7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 2 May 2004 14:05:18 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20Utilisation=20d'une=20variable=20$result?= =?UTF-8?q?=20non=20d=E9finie.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/paiement.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/paiement.class.php b/htdocs/paiement.class.php index b8a4645207d..bdfb5904570 100644 --- a/htdocs/paiement.class.php +++ b/htdocs/paiement.class.php @@ -60,7 +60,7 @@ class Paiement { if ($this->db->num_rows()) { - $obj = $this->db->fetch_object($result , 0); + $obj = $this->db->fetch_object(0); $this->id = $obj->rowid; $this->date = $obj->dp;