diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index 20da50a23a..3083fc5223 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -2104,7 +2104,7 @@ function comment_form( $args = array(), $post_id = null ) { 'author' => '
', 'email' => '' . - '
', + '', 'url' => '' . '
', ); @@ -2121,13 +2121,13 @@ function comment_form( $args = array(), $post_id = null ) { $fields = apply_filters( 'comment_form_default_fields', $fields ); $defaults = array( 'fields' => $fields, - 'comment_field' => '', + 'comment_field' => '
', /** This filter is documented in wp-includes/link-template.php */ 'must_log_in' => '
' . sprintf( __( 'You must be logged in to post a comment.' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '
', /** This filter is documented in wp-includes/link-template.php */ 'logged_in_as' => '' . sprintf( __( 'Logged in as %2$s. Log out?' ), get_edit_user_link(), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '
', - 'comment_notes_before' => '' . __( 'Your email address will not be published.' ) . ( $req ? $required_text : '' ) . '
', - 'comment_notes_after' => ' ', + 'comment_notes_before' => '' . __( 'Your email address will not be published.' ) . ''. ( $req ? $required_text : '' ) . '
', + 'comment_notes_after' => ' ', 'id_form' => 'commentform', 'id_submit' => 'submit', 'class_submit' => 'submit',