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