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

(-)a/circ/circulation.pl (-2 / +1 lines)
Lines 270-276 if ($findborrower) { Link Here
270
270
271
# get the borrower information.....
271
# get the borrower information.....
272
if ($borrowernumber) {
272
if ($borrowernumber) {
273
    $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber );
273
    $borrower = GetMemberDetails( $borrowernumber, 0 );
274
    my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
274
    my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
275
275
276
    # Warningdate is the date that the warning starts appearing
276
    # Warningdate is the date that the warning starts appearing
277
- 

Return to bug 15344