Changeset 6777 for trunk/wp-includes/pluggable.php
- Timestamp:
- 02/10/2008 07:59:34 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r6756 r6777 1229 1229 */ 1230 1230 function wp_setcookie($username, $password = '', $already_md5 = false, $home = '', $siteurl = '', $remember = false) { 1231 _deprecated_function( __FUNCTION__, '2. 4', 'wp_set_auth_cookie()' );1231 _deprecated_function( __FUNCTION__, '2.5', 'wp_set_auth_cookie()' ); 1232 1232 $user = get_userdatabylogin($username); 1233 1233 wp_set_auth_cookie($user->ID, $remember); … … 1244 1244 */ 1245 1245 function wp_clearcookie() { 1246 _deprecated_function( __FUNCTION__, '2. 4', 'wp_clear_auth_cookie()' );1246 _deprecated_function( __FUNCTION__, '2.5', 'wp_clear_auth_cookie()' ); 1247 1247 wp_clear_auth_cookie(); 1248 1248 } … … 1262 1262 */ 1263 1263 function wp_get_cookie_login() { 1264 _deprecated_function( __FUNCTION__, '2. 4', '' );1264 _deprecated_function( __FUNCTION__, '2.5', '' ); 1265 1265 return false; 1266 1266 }
Note: See TracChangeset
for help on using the changeset viewer.