Changeset 22634 for trunk/wp-includes/query.php
- Timestamp:
- 11/17/2012 03:11:29 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r22465 r22634 2775 2775 if ( $this->posts ) { 2776 2776 $this->post_count = count( $this->posts ); 2777 2777 2778 2778 $this->posts = array_map( 'get_post', $this->posts ); 2779 2779 … … 2781 2781 update_post_caches($this->posts, $post_type, $q['update_post_term_cache'], $q['update_post_meta_cache']); 2782 2782 2783 $this->post = reset( $this->posts ); 2783 $this->post = reset( $this->posts ); 2784 2784 } else { 2785 2785 $this->post_count = 0;
Note: See TracChangeset
for help on using the changeset viewer.