From e41f8bf1eb2c839a87c61b74c4799b53b487b002 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 5 Sep 2005 19:27:58 +0000 Subject: [PATCH] Fix: Affichage prix (patch christophe) --- htdocs/compta/stats/cabyuser.php | 3 +-- htdocs/compta/stats/casoc.php | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/htdocs/compta/stats/cabyuser.php b/htdocs/compta/stats/cabyuser.php index ea25de2c43a..c8c5382815b 100644 --- a/htdocs/compta/stats/cabyuser.php +++ b/htdocs/compta/stats/cabyuser.php @@ -18,7 +18,6 @@ * * $Id$ * $Source$ - * */ /** @@ -196,7 +195,7 @@ if (sizeof($amount)) } // Total - print ''.$langs->trans("Total").''.$catotal.' '; + print ''.$langs->trans("Total").''.price($catotal).' '; $db->free($result); } diff --git a/htdocs/compta/stats/casoc.php b/htdocs/compta/stats/casoc.php index 1e54a45de73..d918eb1aa24 100644 --- a/htdocs/compta/stats/casoc.php +++ b/htdocs/compta/stats/casoc.php @@ -18,7 +18,6 @@ * * $Id$ * $Source$ - * */ /** @@ -194,7 +193,7 @@ if (sizeof($amount)) } // Total - print ''.$langs->trans("Total").''.$catotal.' '; + print ''.$langs->trans("Total").''.price($catotal).' '; $db->free($result); }