[32308] was for 4.3, not 4.2.1.

Built from https://develop.svn.wordpress.org/trunk@32309


git-svn-id: http://core.svn.wordpress.org/trunk@32280 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2015-04-27 16:08:27 +00:00
parent 51402dc520
commit b89fc65951
2 changed files with 6 additions and 6 deletions

View File

@ -528,7 +528,7 @@ function upgrade_all() {
upgrade_420();
if ( $wp_current_db_version < 32308 )
upgrade_421();
upgrade_430();
maybe_disable_link_manager();
@ -1439,11 +1439,11 @@ function upgrade_420() {
}
/**
* Execute changes made in WordPress 4.2.1.
* Execute changes made in WordPress 4.3.0.
*
* @since 4.2.1
* @since 4.3.0
*/
function upgrade_421() {
function upgrade_430() {
global $wp_current_db_version, $wpdb;
if ( $wp_current_db_version < 32308 ) {
@ -1460,7 +1460,7 @@ function upgrade_421() {
);
foreach ( $comments as $comment ) {
wp_delete_comment( $comments->comment_ID );
wp_delete_comment( $comment->comment_ID );
}
}
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-alpha-32308';
$wp_version = '4.3-alpha-32309';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.