MyBB Community Forums

Full Version: USERNAME
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need a Plugin which enable with no space in username like users can have username like JohnAdamas but cannot have John Adamas.

Means there is only allocation of alphabets, numerical and underscore.
My Mybb version is 1.6.
Thanks
Open member.php file and find;

	$userhandler = new UserDataHandler("insert");

and add the following just undernbeath it;

$trimed = trim($mybb->input['username']);

the find just below that;

"username" => $mybb->input['username'],

and replace it with the following;

"username" => $trimed,

Hope it will do the trick.
Why would you disallow this?
(2010-11-22, 11:55 AM)friendism Wrote: [ -> ]Means there is only allocation of alphabets, numerical and underscore.

(2010-11-22, 02:51 PM)Uncontrol Wrote: [ -> ]Why would you disallow this?

(2010-11-22, 02:57 PM)Yaldaram Wrote: [ -> ]
(2010-11-22, 11:55 AM)friendism Wrote: [ -> ]Means there is only allocation of alphabets, numerical and underscore.

(2010-11-22, 02:51 PM)Uncontrol Wrote: [ -> ]Why would you disallow this?

Uh, OK? What is your post supposed to prove? I fully understand what the OP wants to do. I'm curious as to why he wants to do it. This isn't the year 2000, someone shouldn't be forced to put an underscore in their username.