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

(-)a/Koha/Patron.pm (-1 / +1 lines)
Lines 1217-1222 my $is_child = $patron->is_child Link Here
1217
Return true if the patron has a category with a type Child (C)
1217
Return true if the patron has a category with a type Child (C)
1218
1218
1219
=cut
1219
=cut
1220
1220
sub is_child {
1221
sub is_child {
1221
    my( $self ) = @_;
1222
    my( $self ) = @_;
1222
    return $self->category->category_type eq 'C' ? 1 : 0;
1223
    return $self->category->category_type eq 'C' ? 1 : 0;
1223
- 

Return to bug 12159