Changeset 40344
- Timestamp:
- 03/28/2017 02:31:13 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-site.php
r38936 r40344 334 334 restore_current_blog(); 335 335 336 $cache_details = true; 337 foreach ( array( 'blogname', 'siteurl', 'post_count', 'home' ) as $field ) { 338 if ( false === $details->$field ) { 339 $cache_details = false; 340 break; 341 } 342 } 343 344 if ( $cache_details ) { 345 wp_cache_set( $this->blog_id, $details, 'site-details' ); 346 } 336 wp_cache_set( $this->blog_id, $details, 'site-details' ); 347 337 } 348 338 -
trunk/tests/phpunit/tests/multisite/siteDetails.php
r40305 r40344 126 126 $this->assertNotFalse( $cached_result ); 127 127 } 128 129 /** 130 * @ticket 40247 131 */ 132 public function test_site_details_cached_including_false_values() { 133 $id = self::factory()->blog->create(); 134 135 $site = get_site( $id ); 136 137 // Trigger retrieving site details (post_count is not set on new sites) 138 $post_count = $site->post_count; 139 140 $cached_details = wp_cache_get( $site->id, 'site-details' ); 141 142 wpmu_delete_blog( $id, true ); 143 wp_update_network_site_counts(); 144 145 $this->assertNotFalse( $cached_details ); 146 } 128 147 } 129 148
Note: See TracChangeset
for help on using the changeset viewer.