diff --git a/htdocs/includes/boxes/box_services_vendus.php b/htdocs/includes/boxes/box_services_vendus.php index ab52b17d5bb..c455039c7ba 100644 --- a/htdocs/includes/boxes/box_services_vendus.php +++ b/htdocs/includes/boxes/box_services_vendus.php @@ -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++;