Ticket #13016: comment-template.diff
File comment-template.diff, 2.2 KB (added by , 14 years ago) |
---|
-
comment-template.php
1497 1497 '<label for="author">' . __( 'Name' ) . '</label> ' . 1498 1498 ( $req ? '<span class="required">*</span>' : '' ) . 1499 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-->',1500 '</p><!-- .comment-form-author -->', 1501 1501 'email' => '<p class="comment-form-email">' . 1502 1502 '<label for="email">' . __( 'Email' ) . '</label> ' . 1503 1503 ( $req ? '<span class="required">*</span>' : '' ) . 1504 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-->',1505 '</p><!-- .comment-form-email -->', 1506 1506 'url' => '<p class="comment-form-url">' . 1507 1507 '<label for="url">' . __( 'Website' ) . '</label>' . 1508 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-->' ) ),1509 '</p><!-- .comment-form-url -->' ) ), 1510 1510 'comment_field' => '<p class="comment-form-comment">' . 1511 1511 '<label for="comment">' . __( 'Comment' ) . '</label>' . 1512 1512 '<textarea id="comment" name="comment" cols="45" rows="8" tabindex="4" aria-required="true"></textarea>' . … … 1557 1557 <?php do_action( 'comment_form', $post_id ); ?> 1558 1558 </form> 1559 1559 <?php endif; ?> 1560 </div> 1560 </div><!-- #respond --> 1561 1561 <?php do_action( 'comment_form_after' ); ?> 1562 1562 <?php else : ?> 1563 1563 <?php do_action( 'comment_form_comments_closed' ); ?>