Don't show the WP plugins widget in multisite in the site admin. Props ocean90. fixes #15748

git-svn-id: https://develop.svn.wordpress.org/trunk@16841 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-12-09 16:37:16 +00:00
parent 8aa42566e8
commit c120fd98ee
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ function wp_dashboard_setup() {
}
// WP Plugins Widget
if ( ( is_blog_admin() && current_user_can( 'install_plugins' ) ) || ( is_network_admin() && current_user_can( 'manage_network_plugins' ) && current_user_can( 'install_plugins' ) ) )
if ( ( ! is_multisite() && is_blog_admin() && current_user_can( 'install_plugins' ) ) || ( is_network_admin() && current_user_can( 'manage_network_plugins' ) && current_user_can( 'install_plugins' ) ) )
wp_add_dashboard_widget( 'dashboard_plugins', __( 'Plugins' ), 'wp_dashboard_plugins' );
// QuickPress Widget