Changeset 40352 for trunk/src/wp-includes/ms-blogs.php
- Timestamp:
- 03/30/2017 04:35:09 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-blogs.php
r40347 r40352 340 340 if ( $details['spam'] == 1 ) { 341 341 /** 342 * Fires when the blog status is changed to 'spam'.342 * Fires when the 'spam' status is added to a blog. 343 343 * 344 344 * @since MU … … 349 349 } else { 350 350 /** 351 * Fires when the blog status is changed to 'ham'.351 * Fires when the 'spam' status is removed from a blog. 352 352 * 353 353 * @since MU … … 363 363 if ( $details['mature'] == 1 ) { 364 364 /** 365 * Fires when the blog status is changed to 'mature'.365 * Fires when the 'mature' status is added to a blog. 366 366 * 367 367 * @since 3.1.0 … … 372 372 } else { 373 373 /** 374 * Fires when the blog status is changed to 'unmature'.374 * Fires when the 'mature' status is removed from a blog. 375 375 * 376 376 * @since 3.1.0 … … 386 386 if ( $details['archived'] == 1 ) { 387 387 /** 388 * Fires when the blog status is changed to 'archived'.388 * Fires when the 'archived' status is added to a blog. 389 389 * 390 390 * @since MU … … 395 395 } else { 396 396 /** 397 * Fires when the blog status is changed to 'unarchived'.397 * Fires when the 'archived' status is removed from a blog. 398 398 * 399 399 * @since MU … … 409 409 if ( $details['deleted'] == 1 ) { 410 410 /** 411 * Fires when the blog status is changed to 'deleted'.411 * Fires when the 'deleted' status is added to a blog. 412 412 * 413 413 * @since 3.5.0 … … 418 418 } else { 419 419 /** 420 * Fires when the blog status is changed to 'undeleted'.420 * Fires when the 'deleted' status is removed from a blog. 421 421 * 422 422 * @since 3.5.0
Note: See TracChangeset
for help on using the changeset viewer.