Changeset 34052 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 09/11/2015 07:09:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r34042 r34052 1692 1692 * @since 4.3.0 The `$plaintext_pass` parameter was changed to `$notify`. 1693 1693 * 1694 * @global wpdb $wpdb WordPress database object for queries. 1695 * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. 1696 * 1694 1697 * @param int $user_id User ID. 1695 1698 * @param string $notify Optional. Type of notification that should happen. Accepts 'admin' or an empty … … 1698 1701 */ 1699 1702 function wp_new_user_notification( $user_id, $notify = '' ) { 1700 global $wpdb ;1703 global $wpdb, $wp_hasher; 1701 1704 $user = get_userdata( $user_id ); 1702 1705
Note: See TracChangeset
for help on using the changeset viewer.