diff --git a/modules/partitario/edit.php b/modules/partitario/edit.php index 6ef8ce081..7fbcd2cd4 100644 --- a/modules/partitario/edit.php +++ b/modules/partitario/edit.php @@ -264,7 +264,7 @@ for ($x = 0; $x < $n1; ++$x) { echo ''; } else { echo "
RICAVI: ".Translator::numberToLocale(sum($totale_ricavi))." €
\n"; - echo "COSTI: ".Translator::numberToLocale(sum(abs($totale_costi)))." €
\n"; + echo "COSTI: ".Translator::numberToLocale(abs(sum($totale_costi)))." €
\n"; echo "UTILE/PERDITA: ".Translator::numberToLocale(sum($totale_ricavi) - sum(abs($totale_costi)))." €
\n"; } }