Changeset 29809
- Timestamp:
- 10/02/2014 01:43:32 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r29293 r29809 2055 2055 * @type string $id_form The comment form element id attribute. Default 'commentform'. 2056 2056 * @type string $id_submit The comment submit element id attribute. Default 'submit'. 2057 * @type string $class_submit The comment submit element class attribute. Default 'submit'. 2057 2058 * @type string $name_submit The comment submit element name attribute. Default 'submit'. 2058 2059 * @type string $title_reply The translatable 'reply' button label. Default 'Leave a Reply'. … … 2110 2111 'id_form' => 'commentform', 2111 2112 'id_submit' => 'submit', 2113 'class_submit' => 'submit', 2112 2114 'name_submit' => 'submit', 2113 2115 'title_reply' => __( 'Leave a Reply' ), … … 2231 2233 <?php echo $args['comment_notes_after']; ?> 2232 2234 <p class="form-submit"> 2233 <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'] ); ?>" />2235 <input name="<?php echo esc_attr( $args['name_submit'] ); ?>" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" class="<?php echo esc_attr( $args['class_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" /> 2234 2236 <?php comment_id_fields( $post_id ); ?> 2235 2237 </p>
Note: See TracChangeset
for help on using the changeset viewer.