Changeset 16605
- Timestamp:
- 11/29/2010 05:39:39 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/deprecated.php
r16244 r16605 205 205 */ 206 206 function get_author_user_ids() { 207 _deprecated_function( __FUNCTION__, '3.1' );207 _deprecated_function( __FUNCTION__, '3.1', 'get_users()' ); 208 208 209 209 global $wpdb; … … 223 223 */ 224 224 function get_editable_authors( $user_id ) { 225 _deprecated_function( __FUNCTION__, '3.1' );225 _deprecated_function( __FUNCTION__, '3.1', 'get_users()' ); 226 226 227 227 global $wpdb; … … 247 247 */ 248 248 function get_editable_user_ids( $user_id, $exclude_zeros = true, $post_type = 'post' ) { 249 _deprecated_function( __FUNCTION__, '3.1' );249 _deprecated_function( __FUNCTION__, '3.1', 'get_users()' ); 250 250 251 251 global $wpdb; … … 277 277 */ 278 278 function get_nonauthor_user_ids() { 279 _deprecated_function( __FUNCTION__, '3.1' );279 _deprecated_function( __FUNCTION__, '3.1', 'get_users()' ); 280 280 281 281 global $wpdb;
Note: See TracChangeset
for help on using the changeset viewer.