Skip to content

Commit 8872817

Browse files
committed
feat: wp coding standards
1 parent ecb68cb commit 8872817

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

forms-bridge/integrations/wpforms/class-wpforms-integration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ private function format_value( $field, $field_data ) {
723723
} elseif ( 'checkbox' === $field_data['type'] ) {
724724
return (bool) $field['value'];
725725
} elseif ( 'address' === $field_data['basetype'] ) {
726-
$post_values = $_POST['wpforms']['fields'][ $field['id'] ] ?? array();
726+
$post_values = $_POST['wpforms']['fields'][ $field['id'] ] ?? array();
727727
$field_value = array();
728728
foreach ( array_keys( $field_data['schema']['properties'] ) as $prop ) {
729729
$field_value[ $prop ] = $post_values[ $prop ] ?? '';

0 commit comments

Comments
 (0)