Changeset 23689
- Timestamp:
- 03/13/2013 08:31:43 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r23624 r23689 1519 1519 $user_identity = $user->exists() ? $user->display_name : ''; 1520 1520 1521 $req = get_option( 'require_name_email' );1521 $req = get_option( 'require_name_email' ); 1522 1522 $aria_req = ( $req ? " aria-required='true'" : '' ); 1523 $fields = array( 1523 $html5 = isset( $args['format'] ) && 'html5' === $args['format']; 1524 $fields = array( 1524 1525 'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' . 1525 1526 '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>', 1526 1527 'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' . 1527 '<input id="email" name="email" type="text"value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>',1528 '<input id="email" name="email" ' . ( $html5 ? 'type="email" pattern=""' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>', 1528 1529 'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label>' . 1529 '<input id="url" name="url" type="text"value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>',1530 '<input id="url" name="url" ' . ( $html5 ? 'type="url" pattern=""' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>', 1530 1531 ); 1531 1532 … … 1544 1545 'cancel_reply_link' => __( 'Cancel reply' ), 1545 1546 'label_submit' => __( 'Post Comment' ), 1547 'format' => 'xhtml', 1546 1548 ); 1547 1549 … … 1557 1559 <?php do_action( 'comment_form_must_log_in_after' ); ?> 1558 1560 <?php else : ?> 1559 <form action="<?php echo site_url( '/wp-comments-post.php' ); ?>" method="post" id="<?php echo esc_attr( $args['id_form'] ); ?>" >1561 <form action="<?php echo site_url( '/wp-comments-post.php' ); ?>" method="post" id="<?php echo esc_attr( $args['id_form'] ); ?>"<?php echo $html5 ? ' novalidate' : ''; ?>> 1560 1562 <?php do_action( 'comment_form_top' ); ?> 1561 1563 <?php if ( is_user_logged_in() ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.