Make WordPress Core

Ticket #22792: 22792.diff

File 22792.diff, 2.0 KB (added by aubreypwd, 11 years ago)

Patch to add name_attr to change the name attribute

  • wp-includes/comment-template.php

     
    20072007 *                                        Default 'You may use these HTML tags and attributes ...'.
    20082008 *     @type string $id_form              The comment form element id attribute. Default 'commentform'.
    20092009 *     @type string $id_submit            The comment submit element id attribute. Default 'submit'.
     2010 *     @type string $name_attr            The comment submit element name attribute. Default 'submit'.
    20102011 *     @type string $title_reply          The translatable 'reply' button label. Default 'Leave a Reply'.
    20112012 *     @type string $title_reply_to       The translatable 'reply-to' button label. Default 'Leave a Reply to %s',
    20122013 *                                        where %s is the author of the comment being replied to.
     
    20612062                '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>',
    20622063                'id_form'              => 'commentform',
    20632064                'id_submit'            => 'submit',
     2065                'name_attr'            => 'submit',
    20642066                'title_reply'          => __( 'Leave a Reply' ),
    20652067                'title_reply_to'       => __( 'Leave a Reply to %s' ),
    20662068                'cancel_reply_link'    => __( 'Cancel reply' ),
     
    21812183                                                ?>
    21822184                                                <?php echo $args['comment_notes_after']; ?>
    21832185                                                <p class="form-submit">
    2184                                                         <input name="submit" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" />
     2186                                                        <input name="<?php echo esc_attr( $args['name_attr'] ); ?>" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="<?php echo esc_attr( $args['label_submit'] ); ?>" />
    21852187                                                        <?php comment_id_fields( $post_id ); ?>
    21862188                                                </p>
    21872189                                                <?php