From 92096f4c648690cf51a82a4cb7cad27316965894 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 24 Jul 2018 12:43:28 +0000 Subject: [PATCH] Comments: Ensure that themes overriding default `comment_form()` fields still display the cookies consent checkbox. The `comment_form_default_fields` filter can be used to remove the checkbox. Props pross, SergeyBiryukov. Merges [43518] to the 4.9 branch. Fixes #44126. Built from https://develop.svn.wordpress.org/branches/4.9@43524 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43353 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment-template.php | 5 +++++ wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index 661c82f891..5bcbcd674e 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -2209,6 +2209,11 @@ function comment_form( $args = array(), $post_id = null ) { $consent = empty( $commenter['comment_author_email'] ) ? '' : ' checked="checked"'; $fields['cookies'] = ''; + + // Ensure that the passed fields include cookies consent. + if ( isset( $args['fields'] ) && ! isset( $args['fields']['cookies'] ) ) { + $args['fields']['cookies'] = $fields['cookies']; + } } $required_text = sprintf( ' ' . __( 'Required fields are marked %s' ), '*' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 5290365da7..e932739f28 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9.8-beta2-43523'; +$wp_version = '4.9.8-beta2-43524'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.