@@ -, +, @@ --- Koha/Account/Lines.pm | 1 - opac/opac-user.pl | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) --- a/Koha/Account/Lines.pm +++ a/Koha/Account/Lines.pm @@ -18,7 +18,6 @@ package Koha::Account::Lines; use Modern::Perl; use Carp; -use List::Util qw( sum0 ); use Koha::Database; use Koha::Account::Line; --- a/opac/opac-user.pl +++ a/opac/opac-user.pl @@ -208,7 +208,7 @@ if ( $pending_checkouts->count ) { # Useless test itemnumber => $issue->{itemnumber} } ); - $issue->{rentalfines} = $rental_fines->total_outstanding + $issue->{rentalfines} = $rental_fines->total_outstanding; my $marcrecord = GetMarcBiblio({ biblionumber => $issue->{'biblionumber'} }); $issue->{'subtitle'} = GetRecordValue('subtitle', $marcrecord, GetFrameworkCode($issue->{'biblionumber'})); --