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

(-)a/members/memberentry.pl (-2 / +1 lines)
Lines 120-126 foreach my $new_guarantor_id (@new_guarantor_ids) { Link Here
120
    push @guarantors, $new_guarantor;
120
    push @guarantors, $new_guarantor;
121
}
121
}
122
122
123
my @existing_guarantors = $patron->guarantor_relationships()->guarantors->as_list unless !$patron;
123
my @existing_guarantors = $patron ? $patron->guarantor_relationships()->guarantors->as_list : ();
124
push @guarantors, @existing_guarantors;
124
push @guarantors, @existing_guarantors;
125
125
126
## Deal with debarments
126
## Deal with debarments
127
- 

Return to bug 12133