Changeset 16660 for trunk/wp-admin/includes/user.php
- Timestamp:
- 12/01/2010 07:24:38 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/user.php
r16443 r16660 217 217 * Retrieve user data and filter it. 218 218 * 219 * @since unknown219 * @since 2.0.5 220 220 * 221 221 * @param int $user_id User ID. … … 242 242 * Retrieve the user's drafts. 243 243 * 244 * @since unknown244 * @since 2.0.0 245 245 * 246 246 * @param int $user_id User ID. … … 262 262 * The user meta will also be deleted that are for that User ID. 263 263 * 264 * @since unknown264 * @since 2.0.0 265 265 * 266 266 * @param int $id User ID. … … 317 317 * Remove all capabilities from user. 318 318 * 319 * @since unknown319 * @since 2.1.0 320 320 * 321 321 * @param int $id User ID. … … 329 329 330 330 add_action('admin_init', 'default_password_nag_handler'); 331 /** 332 * @since 2.8.0 333 */ 331 334 function default_password_nag_handler($errors = false) { 332 335 global $user_ID; … … 342 345 343 346 add_action('profile_update', 'default_password_nag_edit_user', 10, 2); 347 /** 348 * @since 2.8.0 349 */ 344 350 function default_password_nag_edit_user($user_ID, $old_data) { 345 351 if ( ! get_user_option('default_password_nag', $user_ID) ) //Short circuit it. … … 355 361 356 362 add_action('admin_notices', 'default_password_nag'); 363 /** 364 * @since 2.8.0 365 */ 357 366 function default_password_nag() { 358 367 global $pagenow;
Note: See TracChangeset
for help on using the changeset viewer.