From 377bb1b9a551d2c713893dc4c685d9ca167ece82 Mon Sep 17 00:00:00 2001 From: Frankie <40104356+idraulicadueci@users.noreply.github.com> Date: Thu, 8 Dec 2022 20:17:41 +0100 Subject: [PATCH] Miglioria minore: corretta forma della valuta --- lib/helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers.php b/lib/helpers.php index ae18b01aa..a86d611bd 100755 --- a/lib/helpers.php +++ b/lib/helpers.php @@ -274,7 +274,7 @@ function currency() */ function moneyFormat($number, $decimals = null) { - return tr('_TOTAL_ _CURRENCY_', [ + return tr('_CURRENCY_ _TOTAL_', [ '_TOTAL_' => numberFormat($number, $decimals), '_CURRENCY_' => currency(), ]);