View | Details | Raw Unified | Return to bug 30567
Collapse All | Expand All

(-)a/Koha/Number/Price.pm (-3 / +2 lines)
Lines 111-121 sub _format_params { Link Here
111
    if ( $currency_format eq 'FR' ) {
111
    if ( $currency_format eq 'FR' ) {
112
        %format_params = (
112
        %format_params = (
113
            decimal_fill      => '2',
113
            decimal_fill      => '2',
114
            decimal_point     => ',',
114
            decimal_point     => '.',
115
            int_curr_symbol   => $int_curr_symbol,
115
            int_curr_symbol   => $int_curr_symbol,
116
            mon_thousands_sep => ' ',
116
            mon_thousands_sep => ' ',
117
            thousands_sep     => ' ',
117
            thousands_sep     => ' ',
118
            mon_decimal_point => ','
118
            mon_decimal_point => '.'
119
        );
119
        );
120
    }
120
    }
121
121
122
- 

Return to bug 30567