Make WordPress Core


Ignore:
Timestamp:
01/08/2019 08:57:32 AM (6 years ago)
Author:
flixos90
Message:

Multisite: Update @since tags for site management APIs.

Fixes #40364. Fixes #41333.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-deprecated.php

    r44048 r44469  
    560560 *
    561561 * @since MU (3.0.0)
    562  * @deprecated 5.0.0 Use `wp_insert_site()`
     562 * @deprecated 5.1.0 Use `wp_insert_site()`
    563563 * @see wp_insert_site()
    564564 *
     
    569569 */
    570570function insert_blog($domain, $path, $site_id) {
    571     _deprecated_function( __FUNCTION__, '5.0.0', 'wp_insert_site()' );
     571    _deprecated_function( __FUNCTION__, '5.1.0', 'wp_insert_site()' );
    572572
    573573    $data = array(
     
    595595 *
    596596 * @since MU (3.0.0)
    597  * @deprecated 5.0.0
     597 * @deprecated 5.1.0
    598598 *
    599599 * @global wpdb     $wpdb
     
    606606    global $wpdb, $wp_roles;
    607607
    608     _deprecated_function( __FUNCTION__, '5.0.0' );
     608    _deprecated_function( __FUNCTION__, '5.1.0' );
    609609
    610610    // Cast for security
Note: See TracChangeset for help on using the changeset viewer.