mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Merge branch 'feature/webpi' into develop-olympus
* feature/webpi: [feature/webpi] Validate inline with MSSQL password policy.
This commit is contained in:
commit
91399fd357
1 changed files with 2 additions and 2 deletions
|
@ -116,12 +116,12 @@
|
||||||
|
|
||||||
<parameter
|
<parameter
|
||||||
name="Database Password"
|
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">
|
tags="New, Password,SQL, DbUserPassword">
|
||||||
|
|
||||||
<parameterValidation
|
<parameterValidation
|
||||||
type = "RegularExpression"
|
type = "RegularExpression"
|
||||||
validationString = "^.{4,}$" />
|
validationString = "^.*(?=.{8,})(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).*$" />
|
||||||
|
|
||||||
<parameterEntry
|
<parameterEntry
|
||||||
type="TextFile"
|
type="TextFile"
|
||||||
|
|
Loading…
Add table
Reference in a new issue