diff --git a/src/wp-admin/includes/class-wp-plugins-list-table.php b/src/wp-admin/includes/class-wp-plugins-list-table.php
index 3a51d17..43dcc6e 100644
a
|
b
|
|
503 | 503 | 'delete' => '', |
504 | 504 | ); |
505 | 505 | |
| 506 | // Do not restrict by default |
| 507 | $restrict_network_active = false; |
| 508 | $restrict_network_only = false; |
| 509 | |
506 | 510 | if ( 'mustuse' === $context ) { |
507 | 511 | $is_active = true; |
508 | 512 | } elseif ( 'dropins' === $context ) { |
… |
… |
|
525 | 529 | } else { |
526 | 530 | if ( $screen->in_admin( 'network' ) ) { |
527 | 531 | $is_active = is_plugin_active_for_network( $plugin_file ); |
528 | | $restrict_network_active = false; |
529 | | $restrict_network_only = false; |
530 | 532 | } else { |
531 | 533 | $is_active = is_plugin_active( $plugin_file ); |
532 | 534 | $restrict_network_active = ( is_multisite() && is_plugin_active_for_network( $plugin_file ) ); |