From b17d6ee71c69fd1bdff964479701785d9871945e Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 26 May 2003 14:22:53 +0000 Subject: [PATCH] =?UTF-8?q?Mise=20=E0=20jour=20des=20noms=20de=20tables?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/includes/boxes/box_factures.php | 2 +- htdocs/includes/boxes/box_factures_imp.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/includes/boxes/box_factures.php b/htdocs/includes/boxes/box_factures.php index 16562b88c55..17aea1d9630 100644 --- a/htdocs/includes/boxes/box_factures.php +++ b/htdocs/includes/boxes/box_factures.php @@ -27,7 +27,7 @@ $info_box_contents = array(); $sql = "SELECT s.nom,s.idp,f.facnumber,f.amount,".$db->pdate("f.datef")." as df,f.paye,f.rowid as facid"; -$sql .= " FROM societe as s,llx_facture as f WHERE f.fk_soc = s.idp"; +$sql .= " FROM llx_societe as s,llx_facture as f WHERE f.fk_soc = s.idp"; $sql .= " ORDER BY f.datef DESC, f.facnumber DESC "; $sql .= $db->plimit(5, 0); diff --git a/htdocs/includes/boxes/box_factures_imp.php b/htdocs/includes/boxes/box_factures_imp.php index 850a70b53b0..700cb25e834 100644 --- a/htdocs/includes/boxes/box_factures_imp.php +++ b/htdocs/includes/boxes/box_factures_imp.php @@ -27,7 +27,7 @@ $info_box_contents = array(); $sql = "SELECT s.nom,s.idp,f.facnumber,f.amount,".$db->pdate("f.datef")." as df,f.paye,f.rowid as facid"; -$sql .= " FROM societe as s,llx_facture as f WHERE f.fk_soc = s.idp AND f.paye=0"; +$sql .= " FROM llx_societe as s,llx_facture as f WHERE f.fk_soc = s.idp AND f.paye=0"; $sql .= " ORDER BY f.datef DESC, f.facnumber DESC "; $sql .= $db->plimit(5, 0);