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