@@ -, +, @@ correctly - Have the regression test patch applied - Run: $ prove t/db_dependent/ILSDI_Services.t - Apply the patch - Run: $ prove t/db_dependent/ILSDI_Services.t - Sign off :-D --- C4/ILSDI/Services.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/ILSDI/Services.pm +++ a/C4/ILSDI/Services.pm @@ -376,7 +376,7 @@ sub GetPatronInfo { # Cleaning the borrower hashref my $flags = C4::Members::patronflags( $borrower ); - $borrower->{'charges'} = $flags>{'CHARGES'}->{'amount'}; + $borrower->{'charges'} = $flags->{'CHARGES'}->{'amount'}; my $library = Koha::Libraries->find( $borrower->{branchcode} ); $borrower->{'branchname'} = $library ? $library->branchname : ''; delete $borrower->{'userid'}; --