diff options
author | Chris Smith <toonarmy@phpbb.com> | 2010-04-15 23:00:27 +0100 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2010-04-15 23:00:27 +0100 |
commit | b22a651c5c8651e13acf9acfeb73a02b1ae3c5c8 (patch) | |
tree | 6659d084c9ff691276d501b86d14699a09702551 /build/webpi | |
parent | [feature/webpi] Web PI supports UNIX line endings so we'll remove them (diff) | |
download | phpbb-b22a651c5c8651e13acf9acfeb73a02b1ae3c5c8.tar.gz phpbb-b22a651c5c8651e13acf9acfeb73a02b1ae3c5c8.tar.bz2 phpbb-b22a651c5c8651e13acf9acfeb73a02b1ae3c5c8.zip |
[feature/webpi] Validate inline with MSSQL password policy.
Diffstat (limited to 'build/webpi')
-rw-r--r-- | build/webpi/parameters.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/webpi/parameters.xml b/build/webpi/parameters.xml index 770cabf95b..994247e48e 100644 --- a/build/webpi/parameters.xml +++ b/build/webpi/parameters.xml @@ -116,12 +116,12 @@ <parameter name="Database Password" - description="Password for your phpBB database. (Minimum 4 characters)" + description="Password for your phpBB database. (Must be at least 8 characters, contain at least one lower case letter, one upper case letter and one digit)" tags="New, Password,SQL, DbUserPassword"> <parameterValidation type = "RegularExpression" - validationString = "^.{4,}$" /> + validationString = "^.*(?=.{8,})(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).*$" /> <parameterEntry type="TextFile" |