Make WordPress Core


Ignore:
Timestamp:
06/08/2010 01:00:09 PM (13 years ago)
Author:
ryan
Message:

Deprecate get_most_active_blogs() and get_blog_list(). Props ocean90. fixes #13773

File:
1 edited

Legend:

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

    r14032 r15168  
    149149}
    150150
     151/**
     152 * @since MU
     153 * @deprecated 3.0.0
     154 */
     155function get_blog_list( $start = 0, $num = 10, $deprecated = '' ) {
     156    _deprecated_function( __FUNCTION__, '3.0' );
     157    return 0;
     158}
     159
     160/**
     161 * @since MU
     162 * @deprecated 3.0.0
     163 */
     164function get_most_active_blogs( $num = 10, $display = true ) {
     165    _deprecated_function( __FUNCTION__, '3.0' );
     166    return 0;
     167}
    151168?>
Note: See TracChangeset for help on using the changeset viewer.