From 2dabec766ec08f93d8e80078ebe98690ef2d4d0a Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Tue, 30 May 2006 14:23:43 +0000 Subject: [PATCH] bugfix --- htdocs/expedition/expedition.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/expedition/expedition.class.php b/htdocs/expedition/expedition.class.php index 6969dfa1503..e080a96c7fb 100644 --- a/htdocs/expedition/expedition.class.php +++ b/htdocs/expedition/expedition.class.php @@ -192,7 +192,7 @@ class Expedition $sql = "SELECT e.rowid, e.date_creation, e.ref, e.fk_user_author, e.fk_statut, e.fk_commande, e.fk_entrepot"; $sql .= ", ".$this->db->pdate("e.date_expedition")." as date_expedition, c.fk_adresse_livraison"; $sql .= " FROM ".MAIN_DB_PREFIX."expedition as e"; - $sql .= " FROM ".MAIN_DB_PREFIX."commande as c"; + $sql .= ", ".MAIN_DB_PREFIX."commande as c"; $sql .= " WHERE e.rowid = $id"; $sql .= " AND e.fk_commande = c.rowid";