From 28f4c51470260778223f7c13922ddbff1804f558 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 15 Aug 2005 21:37:23 +0000 Subject: [PATCH] Limite longueur chaine libelle --- htdocs/fourn/facture/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/fourn/facture/index.php b/htdocs/fourn/facture/index.php index ae06438c75f..38e9c54dda6 100644 --- a/htdocs/fourn/facture/index.php +++ b/htdocs/fourn/facture/index.php @@ -199,7 +199,7 @@ if ($resql) print ""; print "facid\">".img_object($langs->trans("ShowBill"),"bill")." ".$obj->facnumber."\n"; print "".($obj->date_echeance?dolibarr_print_date($obj->date_echeance):'')."\n"; - print ''.stripslashes("$obj->libelle").''; + print ''.dolibarr_trunc(stripslashes("$obj->libelle"),44).''; print ''; print ''.img_object($langs->trans("ShowSupplier"),"company").' '.$obj->nom.''; print ''.price($obj->total_ht).'';