diff --git a/Koha/Template/Plugin/Price.pm b/Koha/Template/Plugin/Price.pm index 44f7cd8170..ec1fe71d27 100644 --- a/Koha/Template/Plugin/Price.pm +++ b/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;