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

(-)a/Koha/Patron.pm (-1 / +1 lines)
Lines 1584-1589 Return all the historical holds for this patron Link Here
1584
sub old_holds {
1584
sub old_holds {
1585
    my ($self) = @_;
1585
    my ($self) = @_;
1586
    my $old_holds_rs = $self->_result->old_reserves->search( {}, { order_by => 'reservedate' } );
1586
    my $old_holds_rs = $self->_result->old_reserves->search( {}, { order_by => 'reservedate' } );
1587
    require Koha::Old::Holds;
1587
    return Koha::Old::Holds->_new_from_dbic($old_holds_rs);
1588
    return Koha::Old::Holds->_new_from_dbic($old_holds_rs);
1588
}
1589
}
1589
1590
1590
- 

Return to bug 35959