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

(-)a/Koha/Account.pm (-5 / +2 lines)
Lines 535-547 Return all credits and debits for the user, outstanding or otherwise Link Here
535
sub lines {
535
sub lines {
536
    my ($self) = @_;
536
    my ($self) = @_;
537
537
538
    my $lines = Koha::Account::Lines->search(
538
    return Koha::Account::Lines->search(
539
        {
539
        {
540
            borrowernumber    => $self->{patron_id},
540
            borrowernumber => $self->{patron_id},
541
        }
541
        }
542
    );
542
    );
543
544
    return $lines;
545
}
543
}
546
544
547
1;
545
1;
548
- 

Return to bug 21694