Multisite: Correct documentation for site status change hooks.

Props johnbillion.
Fixes #40287.

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


git-svn-id: http://core.svn.wordpress.org/trunk@40259 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Jeremy Felt 2017-03-30 04:36:43 +00:00
parent fa3dc867e7
commit 3d4f2f2fea
2 changed files with 9 additions and 9 deletions

View File

@ -339,7 +339,7 @@ function update_blog_details( $blog_id, $details = array() ) {
if ( $details['spam'] != $current_details['spam'] ) {
if ( $details['spam'] == 1 ) {
/**
* Fires when the blog status is changed to 'spam'.
* Fires when the 'spam' status is added to a blog.
*
* @since MU
*
@ -348,7 +348,7 @@ function update_blog_details( $blog_id, $details = array() ) {
do_action( 'make_spam_blog', $blog_id );
} else {
/**
* Fires when the blog status is changed to 'ham'.
* Fires when the 'spam' status is removed from a blog.
*
* @since MU
*
@ -362,7 +362,7 @@ function update_blog_details( $blog_id, $details = array() ) {
if ( $details['mature'] != $current_details['mature'] ) {
if ( $details['mature'] == 1 ) {
/**
* Fires when the blog status is changed to 'mature'.
* Fires when the 'mature' status is added to a blog.
*
* @since 3.1.0
*
@ -371,7 +371,7 @@ function update_blog_details( $blog_id, $details = array() ) {
do_action( 'mature_blog', $blog_id );
} else {
/**
* Fires when the blog status is changed to 'unmature'.
* Fires when the 'mature' status is removed from a blog.
*
* @since 3.1.0
*
@ -385,7 +385,7 @@ function update_blog_details( $blog_id, $details = array() ) {
if ( $details['archived'] != $current_details['archived'] ) {
if ( $details['archived'] == 1 ) {
/**
* Fires when the blog status is changed to 'archived'.
* Fires when the 'archived' status is added to a blog.
*
* @since MU
*
@ -394,7 +394,7 @@ function update_blog_details( $blog_id, $details = array() ) {
do_action( 'archive_blog', $blog_id );
} else {
/**
* Fires when the blog status is changed to 'unarchived'.
* Fires when the 'archived' status is removed from a blog.
*
* @since MU
*
@ -408,7 +408,7 @@ function update_blog_details( $blog_id, $details = array() ) {
if ( $details['deleted'] != $current_details['deleted'] ) {
if ( $details['deleted'] == 1 ) {
/**
* Fires when the blog status is changed to 'deleted'.
* Fires when the 'deleted' status is added to a blog.
*
* @since 3.5.0
*
@ -417,7 +417,7 @@ function update_blog_details( $blog_id, $details = array() ) {
do_action( 'make_delete_blog', $blog_id );
} else {
/**
* Fires when the blog status is changed to 'undeleted'.
* Fires when the 'deleted' status is removed from a blog.
*
* @since 3.5.0
*

View File

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