Changeset 16938
- Timestamp:
- 12/15/2010 11:27:38 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/ms.php
r16900 r16938 437 437 438 438 if ( null !== $deprecated ) 439 _deprecated_argument( __FUNCTION__, '3.1 .0' );439 _deprecated_argument( __FUNCTION__, '3.1' ); 440 440 441 441 $wpdb->update( $wpdb->users, array( $pref => $value ), array( 'ID' => $id ) ); -
trunk/wp-includes/cron.php
r16690 r16938 157 157 // Previously this function took the arguments as discrete vars rather than an array like the rest of the API 158 158 if ( !is_array($args) ) { 159 _deprecated_argument( __FUNCTION__, '3.0 .0', __('This argument has changed to an array to match the behavior of the other cron functions.') );159 _deprecated_argument( __FUNCTION__, '3.0', __('This argument has changed to an array to match the behavior of the other cron functions.') ); 160 160 $args = array_slice( func_get_args(), 1 ); 161 161 } -
trunk/wp-includes/link-template.php
r16793 r16938 951 951 function get_delete_post_link( $id = 0, $deprecated = '', $force_delete = false ) { 952 952 if ( ! empty( $deprecated ) ) 953 _deprecated_argument( __FUNCTION__, '3.0 .0' );953 _deprecated_argument( __FUNCTION__, '3.0' ); 954 954 955 955 if ( !$post = &get_post( $id ) ) -
trunk/wp-includes/ms-blogs.php
r16900 r16938 424 424 425 425 if ( null !== $deprecated ) 426 _deprecated_argument( __FUNCTION__, '3.1 .0' );426 _deprecated_argument( __FUNCTION__, '3.1' ); 427 427 428 428 switch_to_blog($id); … … 620 620 621 621 if ( null !== $deprecated ) 622 _deprecated_argument( __FUNCTION__, '3.1 .0' );622 _deprecated_argument( __FUNCTION__, '3.1' ); 623 623 624 624 if ( !in_array( $pref, array( 'site_id', 'domain', 'path', 'registered', 'last_updated', 'public', 'archived', 'mature', 'spam', 'deleted', 'lang_id') ) )
Note: See TracChangeset
for help on using the changeset viewer.