Make WordPress Core


Ignore:
Timestamp:
06/28/2010 10:11:41 AM (14 years ago)
Author:
nacin
Message:

Deprecated doc cleanup.

File:
1 edited

Legend:

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

    r15328 r15344  
    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.