Log in

View Full Version : prevent shouting in usernames


sabret00the
04-03-2004, 01:55 PM
just thought i'd request this as it would be a great addition to the software, i hate usernames that are all caps :(

Boofo
04-03-2004, 01:57 PM
You do realize you are in the vB3 area, right? ;)

NTLDR
04-03-2004, 04:49 PM
In register.php find:


eval('$errors[10] = "' . fetch_phrase('username_semicolon', PHRASETYPEID_ERROR) . '";');
}


Add after:


// prevent all caps username
if ($_POST['username'] == strtoupper($_POST['username'])) {

eval('$errors[15] = "' . fetch_phrase('username_allcaps', PHRASETYPEID_ERROR) . '";');
}


Add a phrase called username_allcaps in the front end error message group with the error message to show if a user enters an all caps name.

Boofo
04-03-2004, 05:05 PM
How about a username like:

MarTin

Is there any way to check for all of them to be caps in case someone has a name like this?

sabret00the
04-03-2004, 07:17 PM
You do realize you are in the vB3 area, right? ;)yup, getting ready for the future :)

sabret00the
04-03-2004, 07:19 PM
In register.php find:


eval('$errors[10] = "' . fetch_phrase('username_semicolon', PHRASETYPEID_ERROR) . '";');
}


Add after:


// prevent all caps username
if ($_POST['username'] == strtoupper($_POST['username'])) {

eval('$errors[15] = "' . fetch_phrase('username_allcaps', PHRASETYPEID_ERROR) . '";');
}


Add a phrase called username_allcaps in the front end error message group with the error message to show if a user enters an all caps name.thank you very much, you should most definately release this :)

malmazan
11-09-2006, 10:41 AM
It would be nice to have this as a plugin. Maintaining changes the PHP files is a pain in the butt when upgrading.