Changeset 33891 for trunk/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 09/03/2015 06:16:35 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r33750 r33891 666 666 * @param WP_Comment_Query &$this Current instance of WP_Comment_Query, passed by reference. 667 667 */ 668 $comments = apply_filters_ref_array( 'the_comments', array( $results, &$this ) ); 668 $_comments = apply_filters_ref_array( 'the_comments', array( $results, &$this ) ); 669 670 // Convert to WP_Comment instances 671 $comments = array_map( 'get_comment', $_comments ); 669 672 670 673 wp_cache_add( $cache_key, $comments, 'comment' );
Note: See TracChangeset
for help on using the changeset viewer.