No solution to this?
Hi Fernando,
it's possible to do so, but you need to tweak the plugin.
Here is the corresponding part of the plugin: https://github.com/oneall/social-login-phpbb/blob/phpbb/3.1+/upload/oneall/sociallogin/core/helper.php#L503
I think that you can just add this line: $data['user_login'] = $data['user_full_name'];
$data['user_login'] = $data['user_full_name'];
BEFORE this one: $data['user_login'] = str_replace(' ', '', trim($data['user_login']));
$data['user_login'] = str_replace(' ', '', trim($data['user_login']));
Please sign in to your OneAll account to ask a new question or to contribute to the discussions.
Please click on the link below to connect to the forum with your OneAll account.
Answers
No solution to this?
Hi Fernando,
it's possible to do so, but you need to tweak the plugin.
Here is the corresponding part of the plugin:
https://github.com/oneall/social-login-phpbb/blob/phpbb/3.1+/upload/oneall/sociallogin/core/helper.php#L503
I think that you can just add this line:
$data['user_login'] = $data['user_full_name'];
BEFORE this one:
$data['user_login'] = str_replace(' ', '', trim($data['user_login']));