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
1 | const USERNAME_MAX_LENGTH = 60; |
Please login to continue.