From 9d559b215b69f2f5c6ff3c27dc2e89d49d08a5bc Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 16 Mar 2015 15:24:02 +0100 Subject: [PATCH] [Signed-off] Bug 13836: Does not separate symbol and value if symbol is not displayed. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch force the separation between the symbol and the value to an empty string if the symbol is not displayed. Tested with locale de_CH.UTF-8, prove t/Prices.t is now successful. Signed-off-by: Marc VĂ©ron --- 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; } -- 1.7.10.4