From: Eric Helgeson Date: Fri, 29 Jan 2010 22:58:15 +0000 (-0500) Subject: autoRegister() expects a username existing in ldap, not the suggested_nickname X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=01eb4e8f003bf62575ec16dfb6127d7534be9c88;p=quix0rs-gnu-social.git autoRegister() expects a username existing in ldap, not the suggested_nickname --- diff --git a/lib/authenticationplugin.php b/lib/authenticationplugin.php index 17237086c4..f7f8f8655b 100644 --- a/lib/authenticationplugin.php +++ b/lib/authenticationplugin.php @@ -132,7 +132,7 @@ abstract class AuthenticationPlugin extends Plugin //someone already exists with the suggested nickname //not much else we can do }else{ - $user = $this->autoregister($suggested_nickname); + $user = $this->autoRegister($nickname); if($user){ User_username::register($user,$nickname,$this->provider_name); return false;