Make WordPress Core

Changeset 14092


Ignore:
Timestamp:
04/15/2010 04:16:51 PM (14 years ago)
Author:
nacin
Message:

Update the html comments in comment_form(). props iandstewart, fixes #13016.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/comment-template.php

    r14080 r14092  
    14971497                                                                                                    '<label for="author">' . __( 'Name' ) . '</label> ' .
    14981498                                                                                                    ( $req ? '<span class="required">*</span>' : '' ) .
    1499                                                                                                     '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" tabindex="1"' . $aria_req . ' />' .
    1500                                                                                                     '</p><!-- #form-section-author .form-section -->',
     1499                                                                                                    '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" tabindex="1"' . $aria_req . ' /></p>',
    15011500                                                                                            'email' => '<p class="comment-form-email">' .
    15021501                                                                                                        '<label for="email">' . __( 'Email' ) . '</label> ' .
    15031502                                                                                                        ( $req ? '<span class="required">*</span>' : '' ) .
    1504                                                                                                         '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30" tabindex="2"' . $aria_req . ' />' .
    1505                                                                                                         '</p><!-- #form-section-email .form-section -->',
     1503                                                                                                        '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30" tabindex="2"' . $aria_req . ' /></p>',
    15061504                                                                                            'url' => '<p class="comment-form-url">' .
    15071505                                                                                                        '<label for="url">' . __( 'Website' ) . '</label>' .
    1508                                                                                                         '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" tabindex="3" />' .
    1509                                                                                                         '</p><!-- #form-section-url .form-section -->' ) ),
     1506                                                                                                        '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" tabindex="3" /></p>' ) ),
    15101507                        'comment_field' => '<p class="comment-form-comment">' .
    15111508                                                '<label for="comment">' . __( 'Comment' ) . '</label>' .
    15121509                                                '<textarea id="comment" name="comment" cols="45" rows="8" tabindex="4" aria-required="true"></textarea>' .
    1513                                             '</p><!-- #form-section-comment .form-section -->',
     1510                                            '</p>',
    15141511                        'must_log_in' => '<p class="must-log-in">' .  sprintf( __( 'You must be <a href="%s">logged in</a> to post a comment.' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '</p>',
    15151512                        'logged_in_as' => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%s">%s</a>. <a href="%s" title="Log out of this account">Log out?</a></p>' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ),
     
    15581555                    </form>
    15591556                <?php endif; ?>
    1560             </div>
     1557            </div><!-- #respond -->
    15611558            <?php do_action( 'comment_form_after' ); ?>
    15621559        <?php else : ?>
Note: See TracChangeset for help on using the changeset viewer.