Make WordPress Core

Ticket #35419: 35419-src.diff

File 35419-src.diff, 608 bytes (added by jmdodd, 9 years ago)
  • wp-includes/comment-template.php

     
    13231323                                'count'   => true,
    13241324                                'orderby' => false,
    13251325                                'post_id' => $post->ID,
    1326                                 'parent'  => 0,
    13271326                                'status'  => 'approve',
    13281327                        );
    13291328
     1329                        if ( $comment_args['hierarchical'] ) {
     1330                                $top_level_args['parent'] = 0;
     1331                        }
     1332
    13301333                        if ( isset( $comment_args['include_unapproved'] ) ) {
    13311334                                $top_level_args['include_unapproved'] = $comment_args['include_unapproved'];
    13321335                        }