Remove encoding type from verify email form (#48859)

* Remove enctype from verify email form

* Changelog
This commit is contained in:
Mike Jolley 2024-07-03 12:32:30 +01:00 committed by GitHub
parent 1687d462fb
commit 27c08f4a5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: tweak
Remove enctype from verify email form

View File

@ -20,7 +20,7 @@
defined( 'ABSPATH' ) || exit;
?>
<form name="checkout" method="post" class="woocommerce-form woocommerce-verify-email" action="<?php echo esc_url( $verify_url ); ?>" enctype="multipart/form-data">
<form name="checkout" method="post" class="woocommerce-form woocommerce-verify-email" action="<?php echo esc_url( $verify_url ); ?>">
<?php
wp_nonce_field( 'wc_verify_email', 'check_submission' );