erreur dans le nom du champ libelle -> label

This commit is contained in:
Rodolphe Quiedeville 2003-08-29 21:32:54 +00:00
parent b44d455852
commit e24dc70292

View File

@ -25,7 +25,7 @@ $info_box_head[] = array('text' => "Les 5 derniers services vendus");
$info_box_contents = array();
$sql = "SELECT s.nom,s.idp, p.libelle";
$sql = "SELECT s.nom,s.idp, p.label";
$sql .= " FROM llx_societe as s, llx_contrat as c, llx_product as p WHERE s.idp = c.fk_soc AND c.fk_product = p.rowid";
$sql .= " ORDER BY c.tms DESC ";
/*
@ -51,7 +51,7 @@ if ($result)
'url' => DOL_URL_ROOT."/comm/fiche.php3?socid=".$objp->idp);
$info_box_contents[$i][1] = array('align' => 'left',
'text' => $objp->libelle,
'text' => $objp->label,
'url' => DOL_URL_ROOT."/comm/fiche.php3?socid=".$objp->idp);
$i++;