From c7064629bbb911dbe8f96aec0de8cdde068ea7fe Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 16 Mar 2015 15:24:02 +0100 Subject: [PATCH] Bug 13836: Does not separate symbol and value if symbol is not displayed. This patch force the separation between the symbol and the value to an empty string if the symbol is not displayed. --- Koha/Number/Price.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Number/Price.pm b/Koha/Number/Price.pm index f29fe06..2d563f9 100644 --- a/Koha/Number/Price.pm +++ b/Koha/Number/Price.pm @@ -106,7 +106,7 @@ sub _format_params { } $format_params{p_cs_precedes} = $p_cs_precedes if defined $p_cs_precedes; - $format_params{p_sep_by_space} = $p_sep_by_space if defined $p_sep_by_space; + $format_params{p_sep_by_space} = ( $int_curr_symbol and defined $p_sep_by_space ) ? $p_sep_by_space : 0; return \%format_params; } -- 2.1.0