Make WordPress Core

Ticket #20446: comment_form.patch

File comment_form.patch, 1.4 KB (added by bainternet, 12 years ago)

patched comment_form function with submit class

  • wp-includes/comment-template.php

     
    15401540                '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>',
    15411541                'id_form'              => 'commentform',
    15421542                'id_submit'            => 'submit',
     1543                'class_submit'         => 'submit',
    15431544                'title_reply'          => __( 'Leave a Reply' ),
    15441545                'title_reply_to'       => __( 'Leave a Reply to %s' ),
    15451546                'cancel_reply_link'    => __( 'Cancel reply' ),
     
    15751576                                                <?php echo apply_filters( 'comment_form_field_comment', $args['comment_field'] ); ?>
    15761577                                                <?php echo $args['comment_notes_after']; ?>
    15771578                                                <p class="form-submit">
    1578                                                         <input name="submit" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" />
     1579                                                        <input 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'] ); ?>" />
    15791580                                                        <?php comment_id_fields( $post_id ); ?>
    15801581                                                </p>
    15811582                                                <?php do_action( 'comment_form', $post_id ); ?>