diff --git a/htdocs/compta/dons/index.php b/htdocs/compta/dons/index.php
index e53f2710701..e38e1506c88 100644
--- a/htdocs/compta/dons/index.php
+++ b/htdocs/compta/dons/index.php
@@ -87,7 +87,7 @@ for ($i = 0 ; $i < 3 ; $i++)
print '
'.$donstatic->LibStatut($i,4).' | ';
print ''.$nb[$i].' | ';
print ''.($nb[$i]?price($somme[$i],'MT'):' ').' | ';
- print ''.($nb[$i]?price($somme[$i]/$nb[$i],'MT'):' ').' | ';
+ print ''.($nb[$i]?price(price2num($somme[$i]/$nb[$i],'MT')):' ').' | ';
$totalnb += $nb[$i];
$total += $somme[$i];
print "";
@@ -97,7 +97,7 @@ print '';
print '| '.$langs->trans("Total").' | ';
print ''.$totalnb.' | ';
print ''.price($total,'MT').' | ';
-print ''.($totalnb?price($total/$totalnb,'MT'):' ').' | ';
+print ''.($totalnb?price(price2num($total/$totalnb,'MT')):' ').' | ';
print '
';
print "";