Maximum length of username text field.
Keep this under 191 characters so we can use a unique constraint in MySQL.
File
- core/modules/user/user.module, line 32
- Enables the user registration and login system.
Code
const USERNAME_MAX_LENGTH = 60;
Maximum length of username text field.
Keep this under 191 characters so we can use a unique constraint in MySQL.
const USERNAME_MAX_LENGTH = 60;
Please login to continue.