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:
Sam Minnee 2008-09-30 06:46:05 +00:00
parent 3bef23e00e
commit b9052753be

View File

@ -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