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

(-)a/members/memberentry.pl (-2 / +3 lines)
Lines 285-291 if ( ( $op eq 'cud-save' || $op eq 'cud-insert' ) Link Here
285
}
285
}
286
286
287
foreach my $guarantor (@guarantors) {
287
foreach my $guarantor (@guarantors) {
288
    if ( ( $op eq 'cud-save' || $op eq 'cud-insert' ) && ($guarantor->is_child ) || $guarantor->is_guarantee || $patron->is_guarantor)  {
288
    if (   ( $op eq 'cud-save' || $op eq 'cud-insert' )
289
        && ( $guarantor->is_child || $guarantor->is_guarantee || ( $patron && $patron->is_guarantor ) ) )
290
    {
289
        push @errors, 'ERROR_guarantor_is_guarantee';
291
        push @errors, 'ERROR_guarantor_is_guarantee';
290
    }
292
    }
291
}
293
}
292
- 

Return to bug 37892