@@ -, +, @@ --------- -- This time the previously failing test will pass. --- C4/Members.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/Members.pm +++ a/C4/Members.pm @@ -356,7 +356,7 @@ sub GetMemberDetails { } my $borrower = $sth->fetchrow_hashref; return unless $borrower; - my ($amount) = GetMemberAccountRecords( $borrowernumber); + my ($amount) = GetMemberAccountRecords($borrower->{borrowernumber}); $borrower->{'amountoutstanding'} = $amount; # FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount my $flags = patronflags( $borrower); --