Make WordPress Core

Ticket #22792: 22792.2.diff

File 22792.2.diff, 2.0 KB (added by obenland, 11 years ago)
  • src/wp-includes/comment-template.php

     
    20242024 *                                        Default 'You may use these HTML tags and attributes ...'.
    20252025 *     @type string $id_form              The comment form element id attribute. Default 'commentform'.
    20262026 *     @type string $id_submit            The comment submit element id attribute. Default 'submit'.
     2027 *     @type string $name_submit          The comment submit element name attribute. Default 'submit'.
    20272028 *     @type string $title_reply          The translatable 'reply' button label. Default 'Leave a Reply'.
    20282029 *     @type string $title_reply_to       The translatable 'reply-to' button label. Default 'Leave a Reply to %s',
    20292030 *                                        where %s is the author of the comment being replied to.
     
    20802081                'comment_notes_after'  => '<p class="form-allowed-tags">' . sprintf( __( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: %s' ), ' <code>' . allowed_tags() . '</code>' ) . '</p>',
    20812082                'id_form'              => 'commentform',
    20822083                'id_submit'            => 'submit',
     2084                'name_submit'          => 'submit',
    20832085                'title_reply'          => __( 'Leave a Reply' ),
    20842086                'title_reply_to'       => __( 'Leave a Reply to %s' ),
    20852087                'cancel_reply_link'    => __( 'Cancel reply' ),
     
    22002202                                                ?>
    22012203                                                <?php echo $args['comment_notes_after']; ?>
    22022204                                                <p class="form-submit">
    2203                                                         <input name="submit" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" />
     2205                                                        <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'] ); ?>" />
    22042206                                                        <?php comment_id_fields( $post_id ); ?>
    22052207                                                </p>
    22062208                                                <?php