From 045c407a3c2f8e2032d3653de5b35a1a5fa6b329 Mon Sep 17 00:00:00 2001 From: nacin Date: Fri, 16 Apr 2010 18:29:39 +0000 Subject: [PATCH] Remove tabindex from comment_form(). fixes #12963 git-svn-id: http://svn.automattic.com/wordpress/trunk@14114 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment-template.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index 41d32788af..ed5092ef55 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -1495,16 +1495,16 @@ function comment_form( $args = array(), $post_id = null ) { $aria_req = ( $req ? " aria-required='true'" : '' ); $fields = array( 'author' => '

' . ' ' . ( $req ? '*' : '' ) . - '

', + '

', 'email' => '

' . ( $req ? '*' : '' ) . - '

', + '

', 'url' => '

' . - '

', + '

', ); $defaults = array( 'fields' => apply_filters( 'comment_form_default_fields', $fields ), - 'comment_field' => '

', + 'comment_field' => '

', 'must_log_in' => '

' . sprintf( __( 'You must be logged in to post a comment.' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '

', 'logged_in_as' => '

' . sprintf( __( 'Logged in as %2$s. Log out?

' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ), 'comment_notes_before' => '

' . __( 'Your email is never published nor shared.' ) . ( $req ? __( ' Required fields are marked *' ) : '' ) . '

', @@ -1546,7 +1546,7 @@ function comment_form( $args = array(), $post_id = null ) {

- +