diff --git a/htdocs/compta/index.php b/htdocs/compta/index.php
index 2359d70d07b..72b860977f6 100644
--- a/htdocs/compta/index.php
+++ b/htdocs/compta/index.php
@@ -167,7 +167,7 @@ if (! empty($conf->facture->enabled) && $user->rights->facture->lire)
print '
';
print '';
- print '| '.$langs->trans("CustomersDraftInvoices").($num?' ('.$num.')':'').' |
';
+ print ''.$langs->trans("CustomersDraftInvoices").($num?' '.$num.'':'').' | ';
if ($num)
{
$companystatic=new Societe($db);
@@ -236,7 +236,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture-
print '';
print '';
- print '| '.$langs->trans("SuppliersDraftInvoices").($num?' ('.$num.')':'').' |
';
+ print ''.$langs->trans("SuppliersDraftInvoices").($num?' '.$num.'':'').' | ';
if ($num)
{
$companystatic=new Societe($db);
@@ -555,7 +555,7 @@ if (! empty($conf->tax->enabled) && $user->rights->tax->charges->lire)
print '';
print '';
- print '| '.$langs->trans("ContributionsToPay").($num?' ('.$num.')':'').' | ';
+ print ''.$langs->trans("ContributionsToPay").($num?' '.$num.'':'').' | ';
print ''.$langs->trans("DateDue").' | ';
print ''.$langs->trans("AmountTTC").' | ';
print ''.$langs->trans("Paid").' | ';
@@ -639,7 +639,7 @@ if (! empty($conf->facture->enabled) && ! empty($conf->commande->enabled) && $us
$i = 0;
print '';
print "";
- print '| '.$langs->trans("OrdersToBill").' ('.$num.') | ';
+ print ''.$langs->trans("OrdersToBill").' '.$num.' | ';
if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''.$langs->trans("AmountHT").' | ';
print ''.$langs->trans("AmountTTC").' | ';
print ''.$langs->trans("ToBill").' | ';
@@ -737,7 +737,7 @@ if (! empty($conf->facture->enabled) && $user->rights->facture->lire)
$i = 0;
print '';
- print '| '.$langs->trans("BillsCustomersUnpaid",$num).' ('.$num.') | ';
+ print '
| '.$langs->trans("BillsCustomersUnpaid",$num).' '.$num.' | ';
if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''.$langs->trans("AmountHT").' | ';
print ''.$langs->trans("AmountTTC").' | ';
print ''.$langs->trans("Received").' | ';
@@ -842,7 +842,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture-
$num = $db->num_rows($resql);
print '';
- print '| '.$langs->trans("BillsSuppliersUnpaid",$num).' ('.$num.') | ';
+ print '
| '.$langs->trans("BillsSuppliersUnpaid",$num).' '.$num.' | ';
if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''.$langs->trans("AmountHT").' | ';
print ''.$langs->trans("AmountTTC").' | ';
print ''.$langs->trans("Paid").' | ';
@@ -916,7 +916,7 @@ if ($resql)
$var=!$var;
print "
| ".dol_print_date($obj->da,"day")." | ";
- print "$obj->libelle $obj->label |
";
+ print ''.$obj->libelle.' '.$obj->label.' | ';
$i++;
}
$db->free($resql);