Changeset 54054
- Timestamp:
- 09/01/2022 05:45:38 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r54047 r54054 3291 3291 global $wpdb; 3292 3292 3293 if ( is_multisite() ) {3294 return true;3295 }3296 3297 3293 /** 3298 3294 * Filters whether to suggest use of a persistent object cache and bypass default threshold checks. … … 3308 3304 if ( is_bool( $short_circuit ) ) { 3309 3305 return $short_circuit; 3306 } 3307 3308 if ( is_multisite() ) { 3309 return true; 3310 3310 } 3311 3311
Note: See TracChangeset
for help on using the changeset viewer.