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

(-)a/Koha/Template/Plugin/Price.pm (-2 / +1 lines)
Lines 31-37 sub filter { Link Here
31
    $config->{on_editing} //= 0;
31
    $config->{on_editing} //= 0;
32
    return $config->{on_editing}
32
    return $config->{on_editing}
33
        ? Koha::Number::Price->new( $value )->format_for_editing
33
        ? Koha::Number::Price->new( $value )->format_for_editing
34
        : Koha::Number::Price->new( $value )->format;
34
        : Koha::Number::Price->new( $value )->format( $config );
35
}
35
}
36
36
37
1;
37
1;
38
- 

Return to bug 4078