diff --git a/src/wp-includes/comment-template.php b/src/wp-includes/comment-template.php
index ca0a8de714..2a67c5ee49 100644
a
|
b
|
function comment_form( $args = array(), $post_id = null ) { |
2383 | 2383 | do_action( 'comment_form_must_log_in_after' ); |
2384 | 2384 | else : |
2385 | 2385 | ?> |
2386 | | <form action="<?php echo esc_url( $args['action'] ); ?>" method="post" id="<?php echo esc_attr( $args['id_form'] ); ?>" class="<?php echo esc_attr( $args['class_form'] ); ?>"<?php echo $html5 ? ' novalidate' : ''; ?>> |
| 2386 | <form action="<?php echo esc_url( $args['action'] ); ?>" method="post" id="<?php echo esc_attr( $args['id_form'] ); ?>" class="<?php echo esc_attr( $args['class_form'] ); ?>"> |
2387 | 2387 | <?php |
2388 | 2388 | /** |
2389 | 2389 | * Fires at the top of the comment form, inside the form tag. |