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

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

Return to bug 18635