Changeset 39805
- Timestamp:
- 01/11/2017 05:34:00 AM (8 years ago)
- Location:
- branches/3.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8
-
branches/3.8/src/wp-includes/ms-functions.php
r26538 r39805 716 716 global $wpdb; 717 717 718 $key = substr( md5( time() . rand() . $domain ), 0, 16 );718 $key = substr( md5( time() . wp_rand() . $domain ), 0, 16 ); 719 719 $meta = serialize($meta); 720 720 … … 752 752 $user = preg_replace( '/\s+/', '', sanitize_user( $user, true ) ); 753 753 $user_email = sanitize_email( $user_email ); 754 $key = substr( md5( time() . rand() . $user_email ), 0, 16 );754 $key = substr( md5( time() . wp_rand() . $user_email ), 0, 16 ); 755 755 $meta = serialize($meta); 756 756
Note: See TracChangeset
for help on using the changeset viewer.