diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php
index 654d9da86db..61c22dd4dff 100644
--- a/htdocs/compta/facture/card.php
+++ b/htdocs/compta/facture/card.php
@@ -5037,7 +5037,7 @@ if ($action == 'create') {
print '
| ';
print '';
print $langs->trans("Billed");
- print ' | '.price($object->total_ttc).' | |
';
+ print ''.price($object->total_ttc).' | | ';
// Remainder to pay
print '| ';
print '';
@@ -5079,7 +5079,7 @@ if ($action == 'create') {
print ' : | '.price($sign * $totalpaye).' | |
';
// Billed
- print '| '.$langs->trans("Billed").' : | '.price($sign * $object->total_ttc).' | |
';
+ print '| '.$langs->trans("Billed").' : | '.price($sign * $object->total_ttc).' | |
';
// Remainder to pay back
print '| ';
|