sub missing_fields_output { my ($self, @missing) = @_; if ( $self->{FormConfig}{'missing_fields_redirect'} ) { print $self->cgi_object->redirect($self->{FormConfig}{'missing_fields_redirect'}); } else { my $missing_field_list = join '', map { '
  • ' . $self->escape_html($_) . "
  • \n" } @missing; $self->error_page( 'Error: Blank Fields', < The following fields were left blank in your submission form:

    These fields must be filled in before you can successfully submit the form.

    Please use your back button to return to the form and try again.

    END } }