Changeset 43368 for branches/4.9
- Timestamp:
- 06/16/2018 02:12:55 PM (7 years ago)
- Location:
- branches/4.9
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-admin/includes/misc.php
r43364 r43368 1159 1159 } 1160 1160 1161 $hash = md5( $value . time() . mt_rand() );1161 $hash = md5( $value . time() . wp_rand() ); 1162 1162 $new_admin_email = array( 1163 1163 'hash' => $hash, -
branches/4.9/src/wp-includes/user.php
r43354 r43368 2651 2651 } 2652 2652 2653 $hash = md5( $_POST['email'] . time() . mt_rand() );2653 $hash = md5( $_POST['email'] . time() . wp_rand() ); 2654 2654 $new_user_email = array( 2655 2655 'hash' => $hash,
Note: See TracChangeset
for help on using the changeset viewer.