Changeset 39800 for branches/4.3
- Timestamp:
- 01/11/2017 05:31:59 AM (8 years ago)
- Location:
- branches/4.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3
-
branches/4.3/src/wp-includes/ms-functions.php
r33184 r39800 732 732 global $wpdb; 733 733 734 $key = substr( md5( time() . rand() . $domain ), 0, 16 );734 $key = substr( md5( time() . wp_rand() . $domain ), 0, 16 ); 735 735 $meta = serialize($meta); 736 736 … … 769 769 $user = preg_replace( '/\s+/', '', sanitize_user( $user, true ) ); 770 770 $user_email = sanitize_email( $user_email ); 771 $key = substr( md5( time() . rand() . $user_email ), 0, 16 );771 $key = substr( md5( time() . wp_rand() . $user_email ), 0, 16 ); 772 772 $meta = serialize($meta); 773 773
Note: See TracChangeset
for help on using the changeset viewer.