Lines 168-174
if ( $category_type eq 'C') {
Link Here
|
168 |
if ( $data->{'ethnicity'} || $data->{'ethnotes'} ) { |
168 |
if ( $data->{'ethnicity'} || $data->{'ethnotes'} ) { |
169 |
$template->param( printethnicityline => 1 ); |
169 |
$template->param( printethnicityline => 1 ); |
170 |
} |
170 |
} |
171 |
if ( $category_type eq 'A' ) { |
171 |
if ( $category_type eq 'A' || $category_type eq 'I') { |
172 |
$template->param( isguarantee => 1 ); |
172 |
$template->param( isguarantee => 1 ); |
173 |
|
173 |
|
174 |
# FIXME |
174 |
# FIXME |
Lines 188-194
if ( $category_type eq 'A' ) {
Link Here
|
188 |
); |
188 |
); |
189 |
} |
189 |
} |
190 |
$template->param( guaranteeloop => \@guaranteedata ); |
190 |
$template->param( guaranteeloop => \@guaranteedata ); |
191 |
( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' ); |
191 |
( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' || $category_type eq 'I' ); |
192 |
} |
192 |
} |
193 |
else { |
193 |
else { |
194 |
if ($data->{'guarantorid'}){ |
194 |
if ($data->{'guarantorid'}){ |
195 |
- |
|
|