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

(-)a/Koha/Patron.pm (-1 / +1 lines)
Lines 952-957 my $is_child = $patron->is_child Link Here
952
Return true if the patron has a category with a type Child (C)
952
Return true if the patron has a category with a type Child (C)
953
953
954
=cut
954
=cut
955
955
sub is_child {
956
sub is_child {
956
    my( $self ) = @_;
957
    my( $self ) = @_;
957
    return $self->category->category_type eq 'C' ? 1 : 0;
958
    return $self->category->category_type eq 'C' ? 1 : 0;
958
- 

Return to bug 12159