Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r15329 r17071  
    1515
    1616/**
    17  * @since unknown
     17 * @since MU
    1818 * @deprecated 3.0.0
    1919 * @deprecated Use wp_generate_password()
     
    142142 * @since MU
    143143 * @deprecated 3.0.0
    144  * @deprecated Don't use this, really.
     144 * @deprecated No alternative available. For performance reasons this function is not recommended.
    145145 */
    146146function get_blog_list( $start = 0, $num = 10, $deprecated = '' ) {
    147     _deprecated_function( __FUNCTION__, '3.0', "Don't use this, really." );
     147    _deprecated_function( __FUNCTION__, '3.0' );
    148148
    149149    global $wpdb;
     
    169169 * @since MU
    170170 * @deprecated 3.0.0
    171  * @deprecated Don't use this, really.
     171 * @deprecated No alternative available. For performance reasons this function is not recommended.
    172172 */
    173173function get_most_active_blogs( $num = 10, $display = true ) {
    174     _deprecated_function( __FUNCTION__, '3.0', "Don't use this, really." );
     174    _deprecated_function( __FUNCTION__, '3.0' );
    175175
    176176    $blogs = get_blog_list( 0, 'all', false ); // $blog_id -> $details
Note: See TracChangeset for help on using the changeset viewer.