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

(-)a/Koha/Patron.pm (-15 lines)
Lines 93-112 sub delete { Link Here
93
    return $deleted;
93
    return $deleted;
94
}
94
}
95
95
96
=head3 guarantor
97
98
Returns a Koha::Patron object for this patron's guarantor
99
100
=cut
101
102
sub guarantor {
103
    my ( $self ) = @_;
104
105
    return unless $self->guarantorid();
106
107
    return Koha::Patrons->find( $self->guarantorid() );
108
}
109
110
sub image {
96
sub image {
111
    my ( $self ) = @_;
97
    my ( $self ) = @_;
112
98
113
- 

Return to bug 14610