From 2505e9e0cfc88b625c4f066fa74358cc19aadbe5 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 5 Jun 2006 17:52:25 +0000 Subject: [PATCH] bugfix --- htdocs/propal.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/propal.class.php b/htdocs/propal.class.php index dc193632467..95fa70fd5f2 100644 --- a/htdocs/propal.class.php +++ b/htdocs/propal.class.php @@ -793,7 +793,7 @@ class Propal */ $sql = "SELECT d.description, d.price, d.tva_tx, d.qty, d.remise_percent, d.subprice,"; $sql.= " d.fk_product, p.label, p.description as product_desc, p.ref"; - $sql.= " FROM ".MAIN_DB_PREFIX."propaldet as d,"; + $sql.= " FROM ".MAIN_DB_PREFIX."propaldet as d"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON d.fk_product = p.rowid"; $sql.= " WHERE d.fk_propal = ".$this->id; $sql.= " ORDER by d.rang";