From a7dcc7881c94f10fbc30185159a528c7dd4efda2 Mon Sep 17 00:00:00 2001 From: nacin Date: Wed, 5 May 2010 18:43:54 +0000 Subject: [PATCH] Link to active plugins when we block a Network upgrade due to them. props ocean90. git-svn-id: http://svn.automattic.com/wordpress/trunk@14463 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/network.php b/wp-admin/network.php index 351f7432f..5b671e791 100644 --- a/wp-admin/network.php +++ b/wp-admin/network.php @@ -99,7 +99,7 @@ function network_step1( $errors = false ) { $active_plugins = get_option( 'active_plugins' ); if ( ! empty( $active_plugins ) ) { - echo '

' . __('Warning:') . ' ' . sprintf( __( 'Please deactivate your plugins before enabling the Network feature.' ), admin_url( 'plugins.php' ) ) . '

' . __(' Once the network is created, you may reactivate your plugins.' ) . '

'; + echo '

' . __('Warning:') . ' ' . sprintf( __( 'Please deactivate your plugins before enabling the Network feature.' ), admin_url( 'plugins.php?plugin_status=active' ) ) . '

' . __(' Once the network is created, you may reactivate your plugins.' ) . '

'; include( './admin-footer.php' ); die(); }