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

(-)a/Koha/Patron.pm (-2 / +1 lines)
Lines 175-181 Returns the guarantees (list of Koha::Patron) of this patron Link Here
175
sub guarantees {
175
sub guarantees {
176
    my ( $self ) = @_;
176
    my ( $self ) = @_;
177
177
178
    return Koha::Patrons->search( { guarantorid => $self->borrowernumber } );
178
    return Koha::Patrons->search( { guarantorid => $self->borrowernumber }, { order_by => { -asc => ['surname','firstname'] } } );
179
}
179
}
180
180
181
=head3 housebound_profile
181
=head3 housebound_profile
182
- 

Return to bug 18635