git-svn-id: http://svn.automattic.com/wordpress/trunk@19062 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
66125a116f
commit
f9d807d649
|
@ -1135,12 +1135,19 @@ function upgrade_300() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert the old style widgets order array from 2.2.
|
* Execute changes made in WordPress 3.3.
|
||||||
*
|
*
|
||||||
* @since 3.3.0
|
* @since 3.3.0
|
||||||
*/
|
*/
|
||||||
function upgrade_old_widgets_order_array() {
|
function upgrade_330() {
|
||||||
global $wp_registered_widgets, $sidebars_widgets;
|
global $wp_current_db_version, $wpdb, $wp_registered_widgets, $sidebars_widgets;
|
||||||
|
|
||||||
|
if ( $wp_current_db_version < 19061 && is_main_site() && ! defined( 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) ) {
|
||||||
|
$wpdb->query( "DELETE FROM $wpdb->usermeta WHERE meta_key IN ('show_admin_bar_admin', 'plugins_last_view')" );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $wp_current_db_version >= 11548 )
|
||||||
|
return;
|
||||||
|
|
||||||
$sidebars_widgets = get_option( 'sidebars_widgets', array() );
|
$sidebars_widgets = get_option( 'sidebars_widgets', array() );
|
||||||
$_sidebars_widgets = array();
|
$_sidebars_widgets = array();
|
||||||
|
@ -1196,23 +1203,6 @@ function upgrade_old_widgets_order_array() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Execute changes made in WordPress 3.3.
|
|
||||||
*
|
|
||||||
* @since 3.3.0
|
|
||||||
*/
|
|
||||||
function upgrade_330() {
|
|
||||||
global $wp_current_db_version, $wpdb;
|
|
||||||
|
|
||||||
if ( $wp_current_db_version < 11548 ) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( $wp_current_db_version < 19061 && is_main_site() && ! defined( 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) ) {
|
|
||||||
$wpdb->query( "DELETE FROM $wpdb->usermeta WHERE meta_key IN ('show_admin_bar_admin', 'plugins_last_view')" );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute network level changes
|
* Execute network level changes
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue