diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php
index f7626f5389..d87aa7b57b 100644
a
|
b
|
function comment_form( $args = array(), $post_id = null ) { |
2275 | 2275 | ); |
2276 | 2276 | |
2277 | 2277 | $required_text = sprintf( ' ' . __( 'Required fields are marked %s' ), '<span class="required">*</span>' ); |
| 2278 | |
| 2279 | if ( isset( $args['fields'] ) && ! isset( $args['fieilds']['cookies'] ) ) { |
| 2280 | $args['fields']['cookies'] = $fields['cookies']; |
| 2281 | } |
2278 | 2282 | |
2279 | 2283 | /** |
2280 | 2284 | * Filters the default comment form fields. |