Changes from branches/3.0/wp-includes/ms-deprecated.php at r15329 to trunk/wp-includes/ms-deprecated.php at r17071
- File:
-
- 1 edited
-
trunk/wp-includes/ms-deprecated.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/ms-deprecated.php
r15329 r17071 15 15 16 16 /** 17 * @since unknown17 * @since MU 18 18 * @deprecated 3.0.0 19 19 * @deprecated Use wp_generate_password() … … 142 142 * @since MU 143 143 * @deprecated 3.0.0 144 * @deprecated Don't use this, really.144 * @deprecated No alternative available. For performance reasons this function is not recommended. 145 145 */ 146 146 function 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' ); 148 148 149 149 global $wpdb; … … 169 169 * @since MU 170 170 * @deprecated 3.0.0 171 * @deprecated Don't use this, really.171 * @deprecated No alternative available. For performance reasons this function is not recommended. 172 172 */ 173 173 function 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' ); 175 175 176 176 $blogs = get_blog_list( 0, 'all', false ); // $blog_id -> $details
Note: See TracChangeset
for help on using the changeset viewer.