Changeset 52707 for trunk/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 02/11/2022 06:50:08 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r52332 r52707 1059 1059 } 1060 1060 1061 $data = array(); 1061 1062 foreach ( $parent_map as $parent_id => $children ) { 1062 $cache_key = "get_comment_child_ids:$parent_id:$key:$last_changed"; 1063 wp_cache_set( $cache_key, $children, 'comment' ); 1064 } 1063 $cache_key = "get_comment_child_ids:$parent_id:$key:$last_changed"; 1064 $data[ $cache_key ] = $children; 1065 } 1066 wp_cache_set_multiple( $data, 'comment' ); 1065 1067 } 1066 1068
Note: See TracChangeset
for help on using the changeset viewer.