Ticket #4169: auto-deactivate.diff
File auto-deactivate.diff, 824 bytes (added by , 18 years ago) |
---|
-
wp-admin/upgrade-functions.php
188 188 if ( $wp_current_db_version < 5200 ) { 189 189 upgrade_230(); 190 190 } 191 192 maybe_disable_automattic_widgets(); 191 193 192 194 $wp_rewrite->flush_rules(); 193 195 … … 1111 1113 die(sprintf(__('<strong>ERROR</strong>: WordPress %s requires MySQL 4.0.0 or higher'), $wp_version)); 1112 1114 } 1113 1115 1114 ?> 1116 function maybe_disable_automattic_widgets() { 1117 $plugins = __get_option( 'active_plugins' ); 1118 1119 if ( in_array( 'widgets/widgets.php', $plugins ) ) { 1120 array_splice( $plugins, array_search( 'widgets/widgets.php', $plugins ), 1 ); 1121 update_option( 'active_plugins', $plugins ); 1122 } 1123 } 1124 1125 ?> 1126 No newline at end of file