From f97afde4ee1a9756886388a8d2807874fdaf564d Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Mon, 12 Aug 2013 23:21:58 +0000 Subject: [PATCH] bug : undefined variable --- include/class_phpcompta_sql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/class_phpcompta_sql.php b/include/class_phpcompta_sql.php index 3b7a5f491..4d3210449 100644 --- a/include/class_phpcompta_sql.php +++ b/include/class_phpcompta_sql.php @@ -282,7 +282,7 @@ class phpcompta_sql */ public function get_object($p_ret,$idx) { - return $this->next($p_ret, $i); + return $this->next($p_ret, $idx); } }