Ticket #47084: 47084.patch
File 47084.patch, 864 bytes (added by , 6 years ago) |
---|
-
src/wp-admin/includes/class-wp-site-health.php
366 366 } 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 372 372 $result['status'] = 'recommended'; … … 521 521 } 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. 527 527 if ( $active_theme->parent() ) {