Pass username and nickname to autoregister so auth plugins can set the nickname correct when creating a new user.

Continues fixing what Eric Helgeson pointed out in 01eb4e8f00
This commit is contained in:
Craig Andrews
2010-01-29 20:43:16 -05:00
parent 01eb4e8f00
commit 61d4709eb8
3 changed files with 18 additions and 7 deletions

View File

@@ -96,8 +96,11 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin
}
}
function autoRegister($username)
function autoRegister($username, $nickname)
{
if(is_null($nickname)){
$nickname = $username;
}
$entry = $this->ldap_get_user($username,$this->attributes);
if($entry){
$registration_data = array();
@@ -107,6 +110,7 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin
if(isset($registration_data['email']) && !empty($registration_data['email'])){
$registration_data['email_confirmed']=true;
}
$registration_data['nickname'] = $nickname;
//set the database saved password to a random string.
$registration_data['password']=common_good_rand(16);
return User::register($registration_data);