The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
Is there a way I can set up so that user names must be in capital letters, CAPS ONLY?
"username" must thus be "USERNAME" ? Thanks. |
|
#2
|
|||
|
|||
|
On new registrations you could use:
Code:
$username = strtoupper($username); Code:
UPDATE user SET username = UPPER(username); |
![]() |
|
|