Make WordPress Core

Ticket #13016: comment-template.diff

File comment-template.diff, 2.2 KB (added by iandstewart, 14 years ago)
  • comment-template.php

     
    14971497                                                                                                                                                                                                        '<label for="author">' . __( 'Name' ) . '</label> ' .
    14981498                                                                                                                                                                                                        ( $req ? '<span class="required">*</span>' : '' ) .
    14991499                                                                                                                                                                                                        '<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 -->',
     1500                                                                                                                                                                                                        '</p><!-- .comment-form-author -->',
    15011501                                                                                                                                                                                        'email' => '<p class="comment-form-email">' .
    15021502                                                                                                                                                                                                                '<label for="email">' . __( 'Email' ) . '</label> ' .
    15031503                                                                                                                                                                                                                ( $req ? '<span class="required">*</span>' : '' ) .
    15041504                                                                                                                                                                                                                '<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 -->',
     1505                                                                                                                                                                                                                '</p><!-- .comment-form-email -->',
    15061506                                                                                                                                                                                        'url' => '<p class="comment-form-url">' .
    15071507                                                                                                                                                                                                                '<label for="url">' . __( 'Website' ) . '</label>' .
    15081508                                                                                                                                                                                                                '<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 -->' ) ),
     1509                                                                                                                                                                                                                '</p><!-- .comment-form-url -->' ) ),
    15101510                                                'comment_field' => '<p class="comment-form-comment">' .
    15111511                                                                                                '<label for="comment">' . __( 'Comment' ) . '</label>' .
    15121512                                                                                                '<textarea id="comment" name="comment" cols="45" rows="8" tabindex="4" aria-required="true"></textarea>' .
     
    15571557                                                <?php do_action( 'comment_form', $post_id ); ?>
    15581558                                        </form>
    15591559                                <?php endif; ?>
    1560                         </div>
     1560                        </div><!-- #respond -->
    15611561                        <?php do_action( 'comment_form_after' ); ?>
    15621562                <?php else : ?>
    15631563                        <?php do_action( 'comment_form_comments_closed' ); ?>