diff options
author | Yury German <blueknight@gentoo.org> | 2022-06-15 12:08:35 -0400 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2022-06-15 12:08:35 -0400 |
commit | 36d7691c33cb64ece817246e47a779ec648d10b0 (patch) | |
tree | 08f2fb95303a1d8eeba2c8629a24b35a91fb1cac /plugins/jetpack/modules/contact-form/grunion-contact-form.php | |
parent | twentyfourteen upg 2.7 to 3.2 and twentysixteen from 2.0 to 2.5 (diff) | |
download | blogs-gentoo-36d7691c33cb64ece817246e47a779ec648d10b0.tar.gz blogs-gentoo-36d7691c33cb64ece817246e47a779ec648d10b0.tar.bz2 blogs-gentoo-36d7691c33cb64ece817246e47a779ec648d10b0.zip |
Openid-3.6.1 and jetpack-11.0 upgrade
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/jetpack/modules/contact-form/grunion-contact-form.php')
-rw-r--r-- | plugins/jetpack/modules/contact-form/grunion-contact-form.php | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/plugins/jetpack/modules/contact-form/grunion-contact-form.php b/plugins/jetpack/modules/contact-form/grunion-contact-form.php index 3eaa34c3..5a64fbf1 100644 --- a/plugins/jetpack/modules/contact-form/grunion-contact-form.php +++ b/plugins/jetpack/modules/contact-form/grunion-contact-form.php @@ -161,7 +161,7 @@ class Grunion_Contact_Form_Plugin { // Export to CSV feature if ( is_admin() ) { - add_action( 'admin_init', array( $this, 'download_feedback_as_csv' ) ); + add_action( 'admin_post_feedback_export', array( $this, 'download_feedback_as_csv' ) ); add_action( 'admin_footer-edit.php', array( $this, 'export_form' ) ); } add_action( 'admin_menu', array( $this, 'admin_menu' ) ); @@ -510,13 +510,17 @@ class Grunion_Contact_Form_Plugin { * * Conditionally attached to `template_redirect` */ - function process_form_submission() { - // Add a filter to replace tokens in the subject field with sanitized field values + public function process_form_submission() { + // Add a filter to replace tokens in the subject field with sanitized field values. add_filter( 'contact_form_subject', array( $this, 'replace_tokens_with_input' ), 10, 2 ); - $id = stripslashes( $_POST['contact-form-id'] ); - $hash = isset( $_POST['contact-form-hash'] ) ? $_POST['contact-form-hash'] : ''; + // phpcs:disable WordPress.Security.NonceVerification.Missing + $id = isset( $_POST['contact-form-id'] ) ? wp_unslash( $_POST['contact-form-id'] ) : null; + $id = is_string( $id ) ? $id : null; + $hash = isset( $_POST['contact-form-hash'] ) ? wp_unslash( $_POST['contact-form-hash'] ) : null; + $hash = is_string( $hash ) ? $hash : null; $hash = preg_replace( '/[^\da-f]/i', '', $hash ); + // phpcs:enable if ( ! is_string( $id ) || ! is_string( $hash ) ) { return false; @@ -2532,13 +2536,13 @@ class Grunion_Contact_Form extends Crunion_Contact_Form_Shortcode { $form->fields[] = $field; } - if ( + if ( // phpcs:disable WordPress.Security.NonceVerification.Missing isset( $_POST['action'] ) && 'grunion-contact-form' === $_POST['action'] && isset( $_POST['contact-form-id'] ) && $form->get_attribute( 'id' ) == $_POST['contact-form-id'] && - isset( $_POST['contact-form-hash'] ) && hash_equals( $form->hash, $_POST['contact-form-hash'] ) - ) { + isset( $_POST['contact-form-hash'] ) && is_string( $_POST['contact-form-hash'] ) && hash_equals( $form->hash, $_POST['contact-form-hash'] ) + ) { // phpcs:enable // If we're processing a POST submission for this contact form, validate the field value so we can show errors as necessary. $field->validate(); } |