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

(-)a/Koha/Patron.pm (-2 / +1 lines)
Lines 441-447 Returns the guarantees (list of Koha::Patron) of this patron Link Here
441
sub guarantees {
441
sub guarantees {
442
    my ( $self ) = @_;
442
    my ( $self ) = @_;
443
443
444
    return Koha::Patrons->search( { guarantorid => $self->borrowernumber } );
444
    return Koha::Patrons->search( { guarantorid => $self->borrowernumber }, { order_by => { -asc => ['surname','firstname'] } } );
445
}
445
}
446
446
447
=head3 housebound_profile
447
=head3 housebound_profile
448
- 

Return to bug 18635