Minimum username lenght. [message #1283] |
Wed, 03 April 2002 11:12 |
jnsaff
Messages: 1 Registered: April 2002
Karma: 0
|
Junior Member |
|
|
Hi, Is it possible to change minimum username lenght from 4 to 3 chars? And if so, how?
thanks
|
|
|
Re: Minimum username lenght. [message #1284 is a reply to message #1283] |
Wed, 03 April 2002 16:06 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
jnsaff wrote on Wed, 03 April 2002 6:12 AM | Hi, Is it possible to change minimum username lenght from 4 to 3 chars? And if so, how?
thanks
|
It is, you'll need to modify the register.php file. When you open the file, look for a line which says:
if( !$user_id && strlen($GLOBALS['HTTP_POST_VARS']['reg_login']) < 4 ) {
change the 4 to whatever you want the minimum number of chars you allow as login name. The line below is the error message, change the number 4 there to reflect your new minimum login length as well.
FUDforum Core Developer
|
|
|
|
|