diff --git a/wp-admin/upgrade-functions.php b/wp-admin/upgrade-functions.php index c403340e07..055af65318 100644 --- a/wp-admin/upgrade-functions.php +++ b/wp-admin/upgrade-functions.php @@ -188,6 +188,8 @@ function upgrade_all() { if ( $wp_current_db_version < 5200 ) { upgrade_230(); } + + maybe_disable_automattic_widgets(); $wp_rewrite->flush_rules(); @@ -1111,4 +1113,13 @@ function wp_check_mysql_version() { die(sprintf(__('ERROR: WordPress %s requires MySQL 4.0.0 or higher'), $wp_version)); } -?> +function maybe_disable_automattic_widgets() { + $plugins = __get_option( 'active_plugins' ); + + if ( in_array( 'widgets/widgets.php', $plugins ) ) { + array_splice( $plugins, array_search( 'widgets/widgets.php', $plugins ), 1 ); + update_option( 'active_plugins', $plugins ); + } +} + +?> \ No newline at end of file