Changeset 34053
- Timestamp:
- 09/11/2015 07:17:52 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3/src/wp-includes/pluggable.php
r33620 r34053 1691 1691 * @since 4.3.0 The `$plaintext_pass` parameter was changed to `$notify`. 1692 1692 * 1693 * @global wpdb $wpdb WordPress database object for queries. 1694 * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. 1695 * 1693 1696 * @param int $user_id User ID. 1694 1697 * @param string $notify Whether admin and user should be notified ('both') or … … 1696 1699 */ 1697 1700 function wp_new_user_notification( $user_id, $notify = '' ) { 1698 global $wpdb ;1701 global $wpdb, $wp_hasher; 1699 1702 $user = get_userdata( $user_id ); 1700 1703
Note: See TracChangeset
for help on using the changeset viewer.