@@ -, +, @@ --- Koha/Template/Plugin/Price.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Template/Plugin/Price.pm +++ a/Koha/Template/Plugin/Price.pm @@ -31,7 +31,7 @@ sub filter { $config->{on_editing} //= 0; return $config->{on_editing} ? Koha::Number::Price->new( $value )->format_for_editing - : Koha::Number::Price->new( $value )->format; + : Koha::Number::Price->new( $value )->format( $config ); } 1; --