Changeset 39806 for branches/3.7/src/wp-includes/ms-functions.php
- Timestamp:
- 01/11/2017 05:35:01 AM (8 years ago)
- Location:
- branches/3.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
-
branches/3.7/src
- Property svn:mergeinfo changed
/trunk/src merged: 39795
- Property svn:mergeinfo changed
-
branches/3.7/src/wp-includes/ms-functions.php
r25862 r39806 632 632 global $wpdb; 633 633 634 $key = substr( md5( time() . rand() . $domain ), 0, 16 );634 $key = substr( md5( time() . wp_rand() . $domain ), 0, 16 ); 635 635 $meta = serialize($meta); 636 636 … … 668 668 $user = preg_replace( '/\s+/', '', sanitize_user( $user, true ) ); 669 669 $user_email = sanitize_email( $user_email ); 670 $key = substr( md5( time() . rand() . $user_email ), 0, 16 );670 $key = substr( md5( time() . wp_rand() . $user_email ), 0, 16 ); 671 671 $meta = serialize($meta); 672 672
Note: See TracChangeset
for help on using the changeset viewer.