From 2e35e2001054871e2a99622b53df2ffd69d3bb08 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 16 Dec 2015 19:30:28 +0000 Subject: [PATCH] Docs: Correct a parameter name for the `do_mu_upgrade` filter. See #32246. Built from https://develop.svn.wordpress.org/trunk@35970 git-svn-id: http://core.svn.wordpress.org/trunk@35935 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/admin.php b/wp-admin/admin.php index b1fa18f01e..c518099179 100644 --- a/wp-admin/admin.php +++ b/wp-admin/admin.php @@ -59,7 +59,7 @@ if ( get_option('db_upgraded') ) { * * @since 3.0.0 * - * @param bool true Whether to perform the Multisite upgrade routine. Default true. + * @param bool $do_mu_upgrade Whether to perform the Multisite upgrade routine. Default true. */ } elseif ( apply_filters( 'do_mu_upgrade', true ) ) { $c = get_blog_count(); diff --git a/wp-includes/version.php b/wp-includes/version.php index 6fe9d432fd..2864eb3a2e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35969'; +$wp_version = '4.5-alpha-35970'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.