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

(-)a/Koha/Patron.pm (-4 / +1 lines)
Lines 84-91 Koha::Patron - Koha Patron Object class Link Here
84
84
85
=head2 Class Methods
85
=head2 Class Methods
86
86
87
=cut
88
89
=head3 new
87
=head3 new
90
88
91
=cut
89
=cut
Lines 884-890 It has been introduced to replaced the C4::Members::GetPendingIssues subroutine Link Here
884
It should not be used directly, prefer to access fields you need instead of
882
It should not be used directly, prefer to access fields you need instead of
885
retrieving all these fields in one go.
883
retrieving all these fields in one go.
886
884
887
888
=cut
885
=cut
889
886
890
sub pending_checkouts {
887
sub pending_checkouts {
Lines 1221-1226 my $is_child = $patron->is_child Link Here
1221
Return true if the patron has a category with a type Child (C)
1218
Return true if the patron has a category with a type Child (C)
1222
1219
1223
=cut
1220
=cut
1221
1224
sub is_child {
1222
sub is_child {
1225
    my( $self ) = @_;
1223
    my( $self ) = @_;
1226
    return $self->category->category_type eq 'C' ? 1 : 0;
1224
    return $self->category->category_type eq 'C' ? 1 : 0;
1227
- 

Return to bug 21756