Skip to content

Commit

Permalink
Use correct variable. see [23592]. see #21767.
Browse files Browse the repository at this point in the history
git-svn-id: http://core.svn.wordpress.org/trunk@23595 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
SergeyBiryukov committed Mar 3, 2013
1 parent 315bfb0 commit de4d2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-includes/ms-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ function wpmu_activate_signup($key) {
$meta = maybe_unserialize($signup->meta);
$password = wp_generate_password( 12, false );

$user_id = username_exists($user_login);
$user_id = username_exists($signup->user_login);

if ( ! $user_id )
$user_id = wpmu_create_user($signup->user_login, $password, $signup->user_email);
Expand Down

0 comments on commit de4d2b5

Please sign in to comment.