1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 14:05:37 +02:00

Merged revisions 52876 via svnmerge from

http://svn.silverstripe.com/open/modules/sapphire/branches/govtsecurity

........
  r52876 | sminnee | 2008-04-16 20:13:04 +1200 (Wed, 16 Apr 2008) | 1 line
  
  Removed validation from ConfirmedPasswordField - use Member validation instead
........


git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@53490 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2008-04-26 06:35:50 +00:00
parent 050c19659c
commit 7590ae194b

View File

@ -14,14 +14,14 @@ class ConfirmedPasswordField extends FormField {
* *
* @var int * @var int
*/ */
public $minLength = 6; public $minLength = null;
/** /**
* Maximum character length of the password. * Maximum character length of the password.
* *
* @var int * @var int
*/ */
public $maxLength = 20; public $maxLength = null;
/** /**
* Enforces at least one digit and one alphanumeric * Enforces at least one digit and one alphanumeric