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

(-)a/Koha/Patron.pm (-2 / +1 lines)
Lines 142-148 Returns the guarantees (list of Koha::Patron) of this patron Link Here
142
sub guarantees {
142
sub guarantees {
143
    my ( $self ) = @_;
143
    my ( $self ) = @_;
144
144
145
    return Koha::Patrons->search( { guarantorid => $self->borrowernumber } );
145
    return Koha::Patrons->search( { guarantorid => $self->borrowernumber }, { order_by => { -asc => ['surname','firstname'] } } );
146
}
146
}
147
147
148
=head3 housebound_profile
148
=head3 housebound_profile
149
- 

Return to bug 18635