remove alpha-beta1 metabox preferences from options table, see #13032

git-svn-id: http://svn.automattic.com/wordpress/trunk@14212 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
wpmuguru 2010-04-24 03:09:48 +00:00
parent 47aa8ca69b
commit 3c2369c8d7
1 changed files with 4 additions and 0 deletions

View File

@ -1135,6 +1135,10 @@ function upgrade_300() {
if ( $wp_current_db_version >= 13802 && $wp_current_db_version < 13974 )
$wpdb->update( $wpdb->postmeta, array( 'meta_value' => '' ), array( 'meta_key' => '_menu_item_target', 'meta_value' => '_self' ) );
// 3.0-beta metabox changes. can be removed before release. // r13551
if ( $wp_current_db_version >= 13309 && $wp_current_db_version < 14139 )
$wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE '%meta-box-hidden%' OR option_name LIKE '%closedpostboxes%'" );
}
/**