]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/ms-functions.php
WordPress 4.6.2
[autoinstalls/wordpress.git] / wp-includes / ms-functions.php
index a253a61dac97f1ccd9b6020e217e9e64d67d0496..3f5ee2c92a88482febebfbc23dbc61b5651de45d 100644 (file)
@@ -669,7 +669,7 @@ function wpmu_validate_blog_signup( $blogname, $blog_title, $user = '' ) {
 function wpmu_signup_blog( $domain, $path, $title, $user, $user_email, $meta = array() )  {
        global $wpdb;
 
-       $key = substr( md5( time() . rand() . $domain ), 0, 16 );
+       $key = substr( md5( time() . wp_rand() . $domain ), 0, 16 );
        $meta = serialize($meta);
 
        $wpdb->insert( $wpdb->signups, array(
@@ -719,7 +719,7 @@ function wpmu_signup_user( $user, $user_email, $meta = array() ) {
        // Format data
        $user = preg_replace( '/\s+/', '', sanitize_user( $user, true ) );
        $user_email = sanitize_email( $user_email );
-       $key = substr( md5( time() . rand() . $user_email ), 0, 16 );
+       $key = substr( md5( time() . wp_rand() . $user_email ), 0, 16 );
        $meta = serialize($meta);
 
        $wpdb->insert( $wpdb->signups, array(