From a81704ed5ff687cc3898f52426cd04006ed7a790 Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 24 Aug 2022 15:26:12 +0000 Subject: [PATCH] Docs: Correct typo in `wp_maybe_clean_new_site_cache_on_update()` parameter description. Props kebbet. See #55646. Built from https://develop.svn.wordpress.org/trunk@53939 git-svn-id: http://core.svn.wordpress.org/trunk@53498 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-site.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/ms-site.php b/wp-includes/ms-site.php index cdce8ff033..180eb81efe 100644 --- a/wp-includes/ms-site.php +++ b/wp-includes/ms-site.php @@ -1247,7 +1247,7 @@ function wp_maybe_transition_site_statuses_on_update( $new_site, $old_site = nul * @since 5.1.0 * * @param WP_Site $new_site The site object after the update. - * @param WP_Site $old_site The site obejct prior to the update. + * @param WP_Site $old_site The site object prior to the update. */ function wp_maybe_clean_new_site_cache_on_update( $new_site, $old_site ) { if ( $old_site->domain !== $new_site->domain || $old_site->path !== $new_site->path ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 70bc365ea2..becd824e1d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53938'; +$wp_version = '6.1-alpha-53939'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.