From 2db8ba555d40ee2bb8edb0342e86e03d5d2a7d04 Mon Sep 17 00:00:00 2001 From: Olli-Antti Kivilahti Date: Tue, 29 Jul 2014 12:04:52 +0300 Subject: [PATCH] Bug 12668 - Stray dollar ($) -sign in opac-reserve.pl MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit A dollar sign is hard-coded in opac-reserve.pl and becomes apparent when trying to place a reservation when one has "too_much_oweing" or too much fines. Removing the dollar sign so we just get <"Käyttömaksujen katto ylitetty. Et voi tehdä varauksia. Sinulla on maksamattomia maksuja 9.50."> instead of <"Käyttömaksujen katto ylitetty. Et voi tehdä varauksia. Sinulla on maksamattomia maksuja $9.50."> Patch removes hard coded $ sign. Signed-off-by: Marc Véron Signed-off-by: Katrin Fischer The dollar sign is gone and the message still displays correctly. Signed-off-by: Tomas Cohen Arazi --- opac/opac-reserve.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl index 94ff1bd9f6..2f3c6527dc 100755 --- a/opac/opac-reserve.pl +++ b/opac/opac-reserve.pl @@ -300,7 +300,7 @@ my $noreserves = 0; my $maxoutstanding = C4::Context->preference("maxoutstanding"); $template->param( noreserve => 1 ) unless $maxoutstanding; if ( $borr->{'amountoutstanding'} && ($borr->{'amountoutstanding'} > $maxoutstanding) ) { - my $amount = sprintf "\$%.02f", $borr->{'amountoutstanding'}; + my $amount = sprintf "%.02f", $borr->{'amountoutstanding'}; $template->param( message => 1 ); $noreserves = 1; $template->param( too_much_oweing => $amount ); -- 2.20.1