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

(-)a/Koha/Account.pm (-5 / +2 lines)
Lines 520-532 Return all credits and debits for the user, outstanding or otherwise Link Here
520
sub lines {
520
sub lines {
521
    my ($self) = @_;
521
    my ($self) = @_;
522
522
523
    my $lines = Koha::Account::Lines->search(
523
    return Koha::Account::Lines->search(
524
        {
524
        {
525
            borrowernumber    => $self->{patron_id},
525
            borrowernumber => $self->{patron_id},
526
        }
526
        }
527
    );
527
    );
528
529
    return $lines;
530
}
528
}
531
529
532
1;
530
1;
533
- 

Return to bug 21694