Make WordPress Core


Ignore:
Timestamp:
05/19/2015 01:03:39 AM (10 years ago)
Author:
SergeyBiryukov
Message:

In comment_form(), ensure that filtered arguments contain all required default values.

props boonebgorges.
fixes #32312 for trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/comment-template.php

    r32333 r32511  
    22522252     */
    22532253    $args = wp_parse_args( $args, apply_filters( 'comment_form_defaults', $defaults ) );
     2254
     2255    // Ensure that the filtered args contain all required default values.
     2256    $args = array_merge( $defaults, $args );
    22542257
    22552258        if ( comments_open( $post_id ) ) : ?>
Note: See TracChangeset for help on using the changeset viewer.