diff --git a/htdocs/stripe/transaction.php b/htdocs/stripe/transaction.php
index 95ab57b56f7..90a0a7f86cf 100644
--- a/htdocs/stripe/transaction.php
+++ b/htdocs/stripe/transaction.php
@@ -198,18 +198,13 @@ if (! $rowid) {
print "
" . price(($txn->fee) / 100, 0, '', 1, - 1, - 1, strtoupper($txn->currency)) . " | ";
// Status
print "";
- if ($txn->status=='available')
- {
- print img_picto($langs->trans("".$txn->status),'statut4');
- }
- elseif ($txn->status=='pending')
- {
- print img_picto($langs->trans("".$txn->status),'statut7');
- }
- elseif ($txn->status=='failed')
- {
- print img_picto($langs->trans("".$txn->status),'statut8');
- }
+ if ($txn->status=='available') {
+ print img_picto($langs->trans("".$txn->status.""),'statut4');
+ } elseif ($txn->status=='pending') {
+ print img_picto($langs->trans("".$txn->status.""),'statut7');
+ } elseif ($txn->status=='failed') {
+ print img_picto($langs->trans("".$txn->status.""),'statut8');
+ }
print ' | ';
print "\n";
}