From 8302ac57e088a4f688d99139ff484fc6309844bc Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Tue, 28 Feb 2006 18:10:27 +0000 Subject: [PATCH] bugfix --- htdocs/propal.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/propal.class.php b/htdocs/propal.class.php index 7b9f26fdc1b..a67e6919468 100644 --- a/htdocs/propal.class.php +++ b/htdocs/propal.class.php @@ -563,9 +563,9 @@ class Propal if ($resqlcond) { - $obj = $this->db->fetch_object($resqlcond); - $this->cond_reglement = $obj->cond_libelle; - $this->mode_reglement = $obj->mode_libelle; + $objc = $this->db->fetch_object($resqlcond); + $this->cond_reglement = $objc->cond_libelle; + $this->mode_reglement = $objc->mode_libelle; } }