Changeset 45275 for trunk/src/wp-admin/includes/class-wp-site-health.php
- Timestamp:
- 05/01/2019 06:07:46 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.