MyBB Community Forums
Space - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Requests (https://community.mybb.com/forum-65.html)
+---- Thread: Space (/thread-23802.html)



Space - Miked - 2007-09-06

Many users on my forum create usernames with space on firts char, that menas if i have admin "Miked" ,ad user create also user with nick name " Miked" ( with space on first char ), may other user think taht these user are admin or moderator or other from forum team leaders, can you tell me where i can find a "register" button, and what to change to fix these small bug?


RE: Space - LeX- - 2007-09-06

Can you try this;

Open member.php

Find
	$user = array(
		"username" => $mybb->input['username'],

Change into
	$user = array(
		"username" => trim($mybb->input['username']),