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

(-)a/Koha/Patron.pm (-15 lines)
Lines 44-63 Koha::Patron - Koha Patron Object class Link Here
44
44
45
=cut
45
=cut
46
46
47
=head3 guarantor
48
49
Returns a Koha::Patron object for this patron's guarantor
50
51
=cut
52
53
sub guarantor {
54
    my ( $self ) = @_;
55
56
    return unless $self->guarantorid();
57
58
    return Koha::Patrons->find( $self->guarantorid() );
59
}
60
61
sub image {
47
sub image {
62
    my ( $self ) = @_;
48
    my ( $self ) = @_;
63
49
64
- 

Return to bug 14610