Changeset 48961 for trunk/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 09/09/2020 03:53:50 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r48838 r48961 482 482 483 483 // Convert to WP_Comment instances. 484 array_walk( $_comments, 'get_comment' ); 485 $comments = $_comments; 484 $comments = array_map( 'get_comment', $_comments ); 486 485 487 486 if ( $this->query_vars['hierarchical'] ) {
Note: See TracChangeset
for help on using the changeset viewer.