View | Details | Raw Unified | Return to bug 12868
Collapse All | Expand All

(-)a/C4/Members.pm (-2 / +1 lines)
Lines 356-362 sub GetMemberDetails { Link Here
356
    }
356
    }
357
    my $borrower = $sth->fetchrow_hashref;
357
    my $borrower = $sth->fetchrow_hashref;
358
    return unless $borrower;
358
    return unless $borrower;
359
    my ($amount) = GetMemberAccountRecords( $borrowernumber);
359
    my ($amount) = GetMemberAccountRecords($borrower->{borrowernumber});
360
    $borrower->{'amountoutstanding'} = $amount;
360
    $borrower->{'amountoutstanding'} = $amount;
361
    # FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount
361
    # FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount
362
    my $flags = patronflags( $borrower);
362
    my $flags = patronflags( $borrower);
363
- 

Return to bug 12868