From ebabd43ec6415575f2a4fce5016110880ce11cc0 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 30 Dec 2010 19:02:14 +0000 Subject: [PATCH] Don't deactivate a plugin that is both network activated and activated on the main site after editing. Props SergeyBiryukov. fixes #16011 git-svn-id: https://develop.svn.wordpress.org/trunk@17183 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/plugin-editor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/plugin-editor.php b/wp-admin/plugin-editor.php index 5480a99b3f..7efcecd394 100644 --- a/wp-admin/plugin-editor.php +++ b/wp-admin/plugin-editor.php @@ -89,7 +89,7 @@ default: if ( is_wp_error($error) ) wp_die( $error ); - if ( ! is_plugin_active($file) ) + if ( ( ! empty( $_GET['networkwide'] ) && ! is_plugin_active_for_network($file) ) || ! is_plugin_active($file) ) activate_plugin($file, "plugin-editor.php?file=$file&phperror=1", ! empty( $_GET['networkwide'] ) ); // we'll override this later if the plugin can be included without fatal error wp_redirect( self_admin_url("plugin-editor.php?file=$file&a=te&scrollto=$scrollto") );