diff --git a/htdocs/public/payment/newpayment.php b/htdocs/public/payment/newpayment.php
index e17f5dfde5f..8a947ab3166 100644
--- a/htdocs/public/payment/newpayment.php
+++ b/htdocs/public/payment/newpayment.php
@@ -838,6 +838,7 @@ if ($source == 'order')
// Debitor
print '
| '.$langs->trans("ThirdParty");
print ' | '.$order->thirdparty->name.'';
+ print ' |
'."\n";
// Object
$text=''.$langs->trans("PaymentOrderRef",$order->ref).'';
@@ -958,6 +959,7 @@ if ($source == 'invoice')
// Debitor
print '| '.$langs->trans("ThirdParty");
print ' | '.$invoice->thirdparty->name.'';
+ print ' |
'."\n";
// Object
$text=''.$langs->trans("PaymentInvoiceRef",$invoice->ref).'';
@@ -1295,22 +1297,20 @@ if ($source == 'membersubscription')
$fulltag=dol_string_unaccent($fulltag);
// Creditor
-
print '| '.$langs->trans("Creditor");
print ' | '.$creditor.'';
print '';
print ' |
'."\n";
// Debitor
-
print '| '.$langs->trans("Member");
print ' | ';
if ($member->morphy == 'mor' && ! empty($member->societe)) print $member->societe;
else print $member->getFullName($langs);
print '';
+ print ' |
'."\n";
// Object
-
$text=''.$langs->trans("PaymentSubscription").'';
if (GETPOST('desc','alpha')) $text=''.$langs->trans(GETPOST('desc','alpha')).'';
print '| '.$langs->trans("Designation");
@@ -1344,7 +1344,6 @@ if ($source == 'membersubscription')
}
// Amount
-
print ' |
| '.$langs->trans("Amount");
if (empty($amount))
{
@@ -1392,7 +1391,6 @@ if ($source == 'membersubscription')
print ' |
'."\n";
// Tag
-
print '| '.$langs->trans("PaymentCode");
print ' | '.$fulltag.'';
print '';
@@ -1464,22 +1462,20 @@ if ($source == 'donation')
$fulltag=dol_string_unaccent($fulltag);
// Creditor
-
print ' |
| '.$langs->trans("Creditor");
print ' | '.$creditor.'';
print '';
print ' |
'."\n";
// Debitor
-
print '| '.$langs->trans("ThirdParty");
print ' | ';
if ($don->morphy == 'mor' && ! empty($don->societe)) print $don->societe;
else print $don->getFullName($langs);
print '';
+ print ' |
'."\n";
// Object
-
$text=''.$langs->trans("PaymentDonation").'';
if (GETPOST('desc','alpha')) $text=''.$langs->trans(GETPOST('desc','alpha')).'';
print '| '.$langs->trans("Designation");
@@ -1489,7 +1485,6 @@ if ($source == 'donation')
print ' |
'."\n";
// Amount
-
print '| '.$langs->trans("Amount");
if (empty($amount))
{
@@ -1537,7 +1532,6 @@ if ($source == 'donation')
print ' |
'."\n";
// Tag
-
print '| '.$langs->trans("PaymentCode");
print ' | '.$fulltag.'';
print '';
|