Lines 196-201
elsif ( $action eq 'update' ) {
Link Here
|
196 |
CheckMandatoryFields( \%borrower_changes, $action ); |
196 |
CheckMandatoryFields( \%borrower_changes, $action ); |
197 |
my $invalidformfields = CheckForInvalidFields(\%borrower); |
197 |
my $invalidformfields = CheckForInvalidFields(\%borrower); |
198 |
|
198 |
|
|
|
199 |
# Send back the data to the template |
200 |
%borrower = ( %$borrower, %borrower ); |
201 |
|
199 |
if (@empty_mandatory_fields || @$invalidformfields) { |
202 |
if (@empty_mandatory_fields || @$invalidformfields) { |
200 |
$template->param( |
203 |
$template->param( |
201 |
empty_mandatory_fields => \@empty_mandatory_fields, |
204 |
empty_mandatory_fields => \@empty_mandatory_fields, |
202 |
- |
|
|