Bugzilla – Bug 15921
Inconsistent minimum requirements for password on players versus MySB.com
Last modified: 2019-01-25 12:01:40 UTC
From CX review: "3) I believe I have a separate log in from the web site and the device? Is that possible? The web site let me create a 5 digit password and the device demanded 6. " Not sure if true. Needs to be reviewed.
Mickey - do you know why the tester thinks this was different? I checked code for web and on device registration, and imho both are requiring 6 characters (as does the help text I've found). Here's part of the web code: use constant USER_ACCOUNT_PASSWORD_MIN_LENGTH => 6; if ( length($value) < USER_ACCOUNT_PASSWORD_MIN_LENGTH ) { return $c->string( 'USER_REGISTER_PASSWORD_INVALID_SHORT', USER_ACCOUNT_PASSWORD_MIN_LENGTH ); } This should return the error if the length is less than 6.
QA will follow up on this bug.