Ticket #46060: 46060.3.diff
File 46060.3.diff, 1.6 KB (added by , 6 years ago) |
---|
-
src/wp-admin/includes/class-wp-plugins-list-table.php
232 232 } 233 233 // Populate the inactive list with plugins that aren't activated 234 234 $plugins['inactive'][ $plugin_file ] = $plugin_data; 235 if ( $screen->in_admin( 'network' ) && count_paused_plugin_sites_for_network( $plugin_file ) ) { 236 $plugins['paused'][ $plugin_file ] = $plugin_data; 237 } 235 238 } 236 239 } 237 240 -
src/wp-admin/includes/ms-admin-filters.php
34 34 // Notices Hooks 35 35 add_action( 'admin_notices', 'site_admin_notice' ); 36 36 add_action( 'network_admin_notices', 'site_admin_notice' ); 37 add_action( 'network_admin_notices', 'paused_plugins_notice' ); 37 38 38 39 // Update Hooks 39 40 add_action( 'network_admin_notices', 'update_nag', 3 ); -
src/wp-admin/includes/plugin.php
2267 2267 __( 'You can find more details and make changes on the Plugins screen.' ), 2268 2268 sprintf( 2269 2269 '<a href="%s">%s</a>', 2270 admin_url( 'plugins.php?plugin_status=paused' ),2270 self_admin_url( 'plugins.php?plugin_status=paused' ), 2271 2271 'Go to the Plugins screen' 2272 2272 ) 2273 2273 );