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
This commit is contained in:
parent
c45366a8ce
commit
a81704ed5f
|
@ -1247,7 +1247,7 @@ function wp_maybe_transition_site_statuses_on_update( $new_site, $old_site = nul
|
||||||
* @since 5.1.0
|
* @since 5.1.0
|
||||||
*
|
*
|
||||||
* @param WP_Site $new_site The site object after the update.
|
* @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 ) {
|
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 ) {
|
if ( $old_site->domain !== $new_site->domain || $old_site->path !== $new_site->path ) {
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue