Make WordPress Core

Ticket #12564: comment-form-submit.diff

File comment-form-submit.diff, 1006 bytes (added by joostdevalk, 15 years ago)

Patch

  • wp-includes/comment-template.php

     
    15261526                                                <?php echo apply_filters( 'comment_form_field_comment', $args['comment_field'] ); ?>
    15271527                                                <?php echo $args['comment_notes_after']; ?>
    15281528                                                <p class="form-submit">
    1529                                                         <input name="submit" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" tabindex="<?php echo ( count( $args['fields'] ) + 2 ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" />
     1529                                                        <input name="submit" <?php echo esc_attr(apply_filters('comment_form_submit','')); ?> type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" tabindex="<?php echo ( count( $args['fields'] ) + 2 ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" />
    15301530                                                        <?php comment_id_fields(); ?>
    15311531                                                </p>
    15321532                                                <?php do_action( 'comment_form', $post_id ); ?>