Fix: Libell tronqus

This commit is contained in:
Laurent Destailleur 2007-02-10 17:28:32 +00:00
parent 3d7cd604e1
commit 4484567ac7
2 changed files with 8 additions and 2 deletions

View File

@ -63,7 +63,10 @@ class box_factures extends ModeleBoxes {
$facturestatic=new Facture($db);
$this->info_box_head = array('text' => $langs->trans("BoxTitleLastCustomerBills",$max));
$this->info_box_head = array(
'text' => $langs->trans("BoxTitleLastCustomerBills",$max),
'limit'=> strlen($text)
);
if ($user->rights->facture->lire)
{

View File

@ -65,7 +65,10 @@ class box_factures_fourn extends ModeleBoxes {
include_once(DOL_DOCUMENT_ROOT."/fourn/fournisseur.facture.class.php");
$facturestatic=new FactureFournisseur($db);
$this->info_box_head = array('text' => $langs->trans("BoxTitleLastSupplierBills",$max));
$this->info_box_head = array(
'text' => $langs->trans("BoxTitleLastSupplierBills",$max),
'limit'=> strlen($text)
);
if ($user->rights->fournisseur->facture->lire)
{