oneall / social-login-phpbb

Social Login for phpBB allows your users to login and register with 40+ social networks. It increases your phpBB user registration rate by simplifying the registration process.
https://docs.oneall.com/plugins/guide/social-login-phpbb/
52 stars 33 forks source link

Facebook username being stripped of spaces #2

Closed fade2gray closed 9 years ago

fade2gray commented 9 years ago

Re: Social login mod for phpBB3

If a Facebook user creates an account using the Facebook login for phpBB3 and their username happens to contain spaces, their resulting phpBB3 username has the spaces stripped. e.g. 'Fade To-Gray' becomes 'FadeTo-Gray'.

How can the spaces be prevented from being lost?

SchlesserClaude commented 9 years ago

You can comment the following line to keep the spaces ;)

https://github.com/oneall/social-login-phpbb/blob/master/%5B%20%3C%3D%203.0.%20%5D%20MOD/root/includes/functions_oa_social_login.php#L741

fade2gray commented 9 years ago

Thanks.