Merge pull request #9517 from frederic34/patch-9
remove superfluous space
This commit is contained in:
commit
11c9ac8b13
@ -198,17 +198,12 @@ if (! $rowid) {
|
|||||||
print "<td align=\"right\">" . price(($txn->fee) / 100, 0, '', 1, - 1, - 1, strtoupper($txn->currency)) . "</td>";
|
print "<td align=\"right\">" . price(($txn->fee) / 100, 0, '', 1, - 1, - 1, strtoupper($txn->currency)) . "</td>";
|
||||||
// Status
|
// Status
|
||||||
print "<td align='right'>";
|
print "<td align='right'>";
|
||||||
if ($txn->status=='available')
|
if ($txn->status=='available') {
|
||||||
{
|
print img_picto($langs->trans("".$txn->status.""),'statut4');
|
||||||
print img_picto($langs->trans("".$txn->status),'statut4');
|
} elseif ($txn->status=='pending') {
|
||||||
}
|
print img_picto($langs->trans("".$txn->status.""),'statut7');
|
||||||
elseif ($txn->status=='pending')
|
} elseif ($txn->status=='failed') {
|
||||||
{
|
print img_picto($langs->trans("".$txn->status.""),'statut8');
|
||||||
print img_picto($langs->trans("".$txn->status),'statut7');
|
|
||||||
}
|
|
||||||
elseif ($txn->status=='failed')
|
|
||||||
{
|
|
||||||
print img_picto($langs->trans("".$txn->status),'statut8');
|
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user