Fix notices on form

This commit is contained in:
Kelly Dwan 2019-11-15 15:25:58 -05:00
parent dce1265704
commit eda33e372b
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D

View file

@ -356,7 +356,7 @@ function get_form_submission() {
$result = filter_input_array( INPUT_POST, $input_filters );
if ( ! $result ) {
return [];
return array_fill_keys( array_keys( $input_filters ), '' );
}
return $result;