Ticket #15166: 15166.diff
| File 15166.diff, 857 bytes (added by nacin, 3 years ago) |
|---|
-
wp-admin/includes/default-list-tables.php
3306 3306 continue; 3307 3307 } elseif ( is_multisite() && is_network_only_plugin( $plugin_file ) && !current_user_can( 'manage_network_plugins' ) ) { 3308 3308 $plugins['network'][ $plugin_file ] = $plugin_data; 3309 } elseif ( is_plugin_active( $plugin_file ) ) { 3309 } elseif ( ( !is_network_admin() && is_plugin_active( $plugin_file ) ) 3310 || ( is_network_admin() && is_plugin_active_for_network( $plugin_file ) ) ) { 3310 3311 $plugins['active'][ $plugin_file ] = $plugin_data; 3311 3312 } else { 3312 3313 if ( !is_network_admin() && isset( $recently_activated[ $plugin_file ] ) ) // Was the plugin recently activated?
