1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-01 03:54:56 +02:00

Merge branch 'feature/webpi' into develop-olympus

* feature/webpi:
  [feature/webpi] Validate inline with MSSQL password policy.
This commit is contained in:
Nils Adermann 2010-05-03 19:43:57 +02:00
commit 91399fd357

View File

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