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

(-)a/Koha/Patron.pm (-4 / +2 lines)
Lines 541-547 Returns true if the patron has a guarantor. Link Here
541
541
542
sub is_guarantee {
542
sub is_guarantee {
543
    my ($self) = @_;
543
    my ($self) = @_;
544
    return $self->guarantor_relationships()->count()
544
    return $self->guarantor_relationships()->count();
545
}
545
}
546
546
547
547
Lines 569-575 sub guarantee_relationships { Link Here
569
    );
569
    );
570
}
570
}
571
571
572
573
=head3 is_guarantor
572
=head3 is_guarantor
574
573
575
Returns true if the patron is a guarantor.
574
Returns true if the patron is a guarantor.
Lines 578-584 Returns true if the patron is a guarantor. Link Here
578
577
579
sub is_guarantor {
578
sub is_guarantor {
580
    my ($self) = @_;
579
    my ($self) = @_;
581
    return $self->guarantee_relationships()->count()
580
    return $self->guarantee_relationships()->count();
582
}
581
}
583
582
584
583
585
- 

Return to bug 37892