From 25d269dbbed52fe0e77e735a0884ddaeb57f3269 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 8 Jun 2004 21:15:16 +0000 Subject: [PATCH] Fix: Le champ libelle de la charge ne s'affichait pas en entier --- htdocs/compta/sociales/charges.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/htdocs/compta/sociales/charges.php b/htdocs/compta/sociales/charges.php index 6f68c1ea54a..a318d3d6dd9 100644 --- a/htdocs/compta/sociales/charges.php +++ b/htdocs/compta/sociales/charges.php @@ -61,7 +61,6 @@ if ($chid > 0) if ( $cha->fetch($chid) > 0) { - /* * Charge */ @@ -144,12 +143,12 @@ if ($chid > 0) print ""; if ($cha->paye==0) { - print 'Libellé'; + print 'Libellé'; print "Date d'échéancedate_ech)."\">"; print "Montant TTCamount\">"; } else { - print 'Libellé'.stripslashes($cha->lib).''; + print 'Libellé'.$cha->lib.''; print "Date d'échéance".dolibarr_print_date($cha->date_ech).""; print "Montant TTC".price($cha->amount).""; }