Changeset 34569 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 09/26/2015 02:24:17 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r34561 r34569 1308 1308 $comments_flat = array(); 1309 1309 foreach ( $_comments as $_comment ) { 1310 $comments_flat = array_merge( $comments_flat, array( $_comment ), $_comment->get_children( 'flat' ) ); 1310 $comments_flat = array_merge( $comments_flat, array( $_comment ), $_comment->get_children( array( 1311 'format' => 'flat', 1312 'status' => $comment_args['status'], 1313 'orderby' => $comment_args['orderby'] 1314 ) ) ); 1311 1315 } 1312 1316
Note: See TracChangeset
for help on using the changeset viewer.