Changeset 28813 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 06/24/2014 12:09:51 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r28654 r28813 2040 2040 * @type string $id_form The comment form element id attribute. Default 'commentform'. 2041 2041 * @type string $id_submit The comment submit element id attribute. Default 'submit'. 2042 * @type string $name_submit The comment submit element name attribute. Default 'submit'. 2042 2043 * @type string $title_reply The translatable 'reply' button label. Default 'Leave a Reply'. 2043 2044 * @type string $title_reply_to The translatable 'reply-to' button label. Default 'Leave a Reply to %s', … … 2094 2095 'id_form' => 'commentform', 2095 2096 'id_submit' => 'submit', 2097 'name_submit' => 'submit', 2096 2098 'title_reply' => __( 'Leave a Reply' ), 2097 2099 'title_reply_to' => __( 'Leave a Reply to %s' ), … … 2214 2216 <?php echo $args['comment_notes_after']; ?> 2215 2217 <p class="form-submit"> 2216 <input name=" submit" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" />2218 <input name="<?php echo esc_attr( $args['name_submit'] ); ?>" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" /> 2217 2219 <?php comment_id_fields( $post_id ); ?> 2218 2220 </p>
Note: See TracChangeset
for help on using the changeset viewer.