@@ -, +, @@ --- C4/ILSDI/Services.pm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) --- a/C4/ILSDI/Services.pm +++ a/C4/ILSDI/Services.pm @@ -425,11 +425,7 @@ sub GetPatronInfo { # Fines management if ( $cgi->param('show_fines') && $cgi->param('show_fines') eq "1" ) { - - my $account_lines = $patron->account->lines; - while (my $line = $account_lines->next ) { - push @{ $borrower->{fines}{fine} }, $line->unblessed; - } + $borrower->{fines}{fine} = $patron->account->lines->unblessed; } # Reserves management --