@ -534,13 +534,15 @@ class OpenID_Connect_Generic_Client_Wrapper {
// copy the username for incrementing
$username = $desired_username;
// original user gets "name"
// second user gets "name2"
// etc
$count = 1;
while ( username_exists( $username ) ) {
if (!$this->settings->link_existing_users) {
$count ++;
$username = $desired_username . $count;
}
return $username;