Changeset 43367
- Timestamp:
- 06/16/2018 02:09:58 PM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r43363 r43367 1206 1206 } 1207 1207 1208 $hash = md5( $value . time() . mt_rand() );1208 $hash = md5( $value . time() . wp_rand() ); 1209 1209 $new_admin_email = array( 1210 1210 'hash' => $hash, -
trunk/src/wp-includes/user.php
r43353 r43367 2727 2727 } 2728 2728 2729 $hash = md5( $_POST['email'] . time() . mt_rand() );2729 $hash = md5( $_POST['email'] . time() . wp_rand() ); 2730 2730 $new_user_email = array( 2731 2731 'hash' => $hash,
Note: See TracChangeset
for help on using the changeset viewer.