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

(-)a/Koha/Club/Enrollment.pm (-3 / +2 lines)
Lines 59-65 sub cancel { Link Here
59
59
60
sub club {
60
sub club {
61
    my ( $self ) = @_;
61
    my ( $self ) = @_;
62
    return Koha::Clubs->find( $self->club_id() );
62
    return scalar Koha::Clubs->find( $self->club_id() );
63
}
63
}
64
64
65
=head3 patron
65
=head3 patron
Lines 68-74 sub club { Link Here
68
68
69
sub patron {
69
sub patron {
70
    my ( $self ) = @_;
70
    my ( $self ) = @_;
71
    return Koha::Patrons->find( $self->borrowernumber() );
71
    return scalar Koha::Patrons->find( $self->borrowernumber() );
72
}
72
}
73
73
74
=head3 type
74
=head3 type
75
- 

Return to bug 19214