mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
Removed hard-coded limits in ConfirmedPasswordField. This should be configured in a member password validator
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.2@63405 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
3bef23e00e
commit
b9052753be
@ -19,14 +19,14 @@ class ConfirmedPasswordField extends FormField {
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $minLength = 6;
|
||||
public $minLength = null;
|
||||
|
||||
/**
|
||||
* Maximum character length of the password.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $maxLength = 20;
|
||||
public $maxLength = null;
|
||||
|
||||
/**
|
||||
* Enforces at least one digit and one alphanumeric
|
||||
|
Loading…
x
Reference in New Issue
Block a user