Changeset 22258
- Timestamp:
- 10/17/2012 08:57:23 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r22244 r22258 2800 2800 global $wpdb; 2801 2801 2802 if ( $q['no_found_rows'] || ! $this->posts ) 2802 // Bail if posts is an empty array. Continue if posts is an empty string 2803 // null, or false to accommodate caching plugins that fill posts later. 2804 if ( $q['no_found_rows'] || ( is_array( $this->posts ) && ! $this->posts ) ) 2803 2805 return; 2804 2806
Note: See TracChangeset
for help on using the changeset viewer.