Changeset 45275
- Timestamp:
- 05/01/2019 06:07:46 PM (6 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health-auto-updates.php
r45223 r45275 87 87 */ 88 88 public function test_wp_version_check_attached() { 89 if ( ! is_main_site() ) { 90 return; 91 } 92 89 93 $cookies = wp_unslash( $_COOKIE ); 90 94 $timeout = 10; -
trunk/src/wp-admin/includes/class-wp-site-health.php
r45260 r45275 367 367 368 368 // Check if there are inactive plugins. 369 if ( $plugins_total > $plugins_active ) {369 if ( $plugins_total > $plugins_active && ! is_multisite() ) { 370 370 $unused_plugins = $plugins_total - $plugins_active; 371 371 … … 522 522 } 523 523 524 if ( $has_unused_themes && $show_unused_themes ) {524 if ( $has_unused_themes && $show_unused_themes && ! is_multisite() ) { 525 525 526 526 // This is a child theme, so we want to be a bit more explicit in our messages.
Note: See TracChangeset
for help on using the changeset viewer.