From 4aebaf22aeae4e5712476d4f21b24141a041beef Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 10 Oct 2012 15:06:02 +0200 Subject: [PATCH] Fix: Avoid wrap on amount --- htdocs/compta/dons/index.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/htdocs/compta/dons/index.php b/htdocs/compta/dons/index.php index 6c0f789b9b8..5b11c9a79b1 100644 --- a/htdocs/compta/dons/index.php +++ b/htdocs/compta/dons/index.php @@ -143,7 +143,7 @@ print ''; $max=10; /* - * Last modified proposals + * Last modified donations */ $sql = "SELECT c.rowid, c.ref, c.fk_statut, c.societe, c.nom,"; @@ -187,7 +187,7 @@ if ($resql) print ''; print ''; - print price($obj->amount); + print price($obj->amount,1); print ''; // Date @@ -206,7 +206,8 @@ else dol_print_error($db); print ''; -$db->close(); llxFooter(); + +$db->close(); ?>