From d78b1d3abbb17f72cc94ad6c5db7e6ade87dce1a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Sun, 7 Jan 2018 14:06:14 -0300 Subject: [PATCH] Bug 19933: Remove patronflags - unused vars oldamount/amountold in circulation.pl There is oldamound/amountold variable that is sent to the template but never used later. Let remove it now to avoid useless replacement. --- circ/circulation.pl | 4 ---- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 1 - 2 files changed, 5 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index 93ed09c169..125d75d4f1 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -552,9 +552,6 @@ foreach my $flag ( sort keys %$flags ) { } } -my $amountold = $flags ? $flags->{'CHARGES'}->{'message'} || 0 : 0; -$amountold =~ s/^.*\$//; # remove upto the $, if any - my $total = $patron ? $patron->account->balance : 0; if ( $patron && $patron->is_child) { @@ -632,7 +629,6 @@ $template->param( borrowernumber => $borrowernumber, branch => $branch, was_renewed => scalar $query->param('was_renewed') ? 1 : 0, - amountold => $amountold, barcodes => $barcodes, stickyduedate => $stickyduedate, duedatespec => $duedatespec, diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index 4c66febb6b..2f1d1185e3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -603,7 +603,6 @@ No patron matched [% message | html %] [% IF ( CHARGES ) %] - [% END %] [% IF ( issue ) %] -- 2.11.0