From: Jean-AndrĂ© Santoni <[email protected]>

+ Forgot a "my"
---
 admin/aqbudgetperiods.pl |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/admin/aqbudgetperiods.pl b/admin/aqbudgetperiods.pl
index b12f85e..779f22c 100755
--- a/admin/aqbudgetperiods.pl
+++ b/admin/aqbudgetperiods.pl
@@ -114,7 +114,14 @@ if ( $op eq 'add_form' ) {
                my $budgetperiod_hash=GetBudgetPeriod($budget_period_id);
         # get dropboxes
                FormatData($budgetperiod_hash);
-        $$budgetperiod_hash{budget_period_total}= 
$num->format_price($$budgetperiod_hash{'budget_period_total'});  
+
+        my $editnum = new Number::Format(
+            'int_curr_symbol'   => '',
+            'thousands_sep'     => '',
+            'mon_decimal_point' => '.'
+        );
+
+        $$budgetperiod_hash{budget_period_total}= 
$editnum->format_price($$budgetperiod_hash{'budget_period_total'});
         $template->param(
                        %$budgetperiod_hash
         );
-- 
1.6.3.3

_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha.org/mailman/listinfo/koha-patches

Reply via email to