Changeset 38639 for trunk/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 09/21/2016 05:37:02 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r38446 r38639 1021 1021 // Prime comment caches for non-top-level comments. 1022 1022 $descendant_ids = array(); 1023 for ( $i = 1, $c = count( $levels ); $i <= $c; $i++ ) { 1024 if ( empty( $levels[ $i ] ) ) { 1025 continue; 1026 } 1023 for ( $i = 1, $c = count( $levels ); $i < $c; $i++ ) { 1027 1024 $descendant_ids = array_merge( $descendant_ids, $levels[ $i ] ); 1028 1025 }
Note: See TracChangeset
for help on using the changeset viewer.