Opened 14 years ago
Last modified 8 years ago
#16833 new defect (bug)
Signup mechanism shortens usernames without warning
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Future Release | Priority: | normal |
Severity: | normal | Version: | 3.0 |
Component: | Users | Keywords: | has-ux-feedback has-patch dev-feedback |
Focuses: | Cc: |
Description
When a user signs up for an account on a wordpress blog, if their chosen username is longer than the limit, wordpress chops of the end of the username, without warning the user, and without offering the user the opportunity to choose again.
Steps to reproduce: Go to a wordpress blog, sign up with a long username, and read the confirmation email. An example: forum.xbmc.org, which has a limit of 15 characters.
Attachments (1)
Change History (10)
#2
@
14 years ago
- Keywords has-patch added
I think we're missing some maxlength attributes - these would prevent someone submitting a too-long username in the first place. Elsewhere (e.g., in show_user_form()
) they are present.
Also the maxlength value for email was wrong - user_email accepts varchar(100)
.
#3
@
14 years ago
- Milestone changed from Awaiting Review to Future Release
- Type changed from defect (bug) to enhancement
- Version set to 3.0
Insert maxlength attribute into user_login field to prevent long usernames being truncated silently