Automattically deactivate Automattic Widgets, if activated. see #4169

git-svn-id: https://develop.svn.wordpress.org/trunk@5344 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
rob1n 2007-04-29 20:53:29 +00:00
parent 68ae6680ea
commit c12eb84474
1 changed files with 12 additions and 1 deletions

View File

@ -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(__('<strong>ERROR</strong>: 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 );
}
}
?>