Changeset 38537 for branches/4.6/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 09/07/2016 01:40:36 PM (8 years ago)
- Location:
- branches/4.6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.6
-
branches/4.6/src/wp-includes/class-wp-comment-query.php
r38497 r38537 996 996 997 997 if ( $uncached_parent_ids ) { 998 // Fetch this level of comments. 999 $parent_query_args = $this->query_vars; 1000 foreach ( $exclude_keys as $exclude_key ) { 1001 $parent_query_args[ $exclude_key ] = ''; 1002 } 1003 $parent_query_args['parent__in'] = $uncached_parent_ids; 1004 $parent_query_args['no_found_rows'] = true; 1005 $parent_query_args['hierarchical'] = false; 1006 1007 $level_comments = get_comments( $parent_query_args ); 998 $where = 'WHERE ' . $_where . ' AND comment_parent IN (' . implode( ',', array_map( 'intval', $uncached_parent_ids ) ) . ')'; 999 $level_comments = $wpdb->get_results( "SELECT $wpdb->comments.comment_ID, $wpdb->comments.comment_parent {$this->sql_clauses['from']} {$where} {$this->sql_clauses['groupby']} ORDER BY comment_date_gmt ASC, comment_ID ASC" ); 1008 1000 1009 1001 // Cache parent-child relationships.
Note: See TracChangeset
for help on using the changeset viewer.