mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[feature/webpi] Validate inline with MSSQL password policy.
This commit is contained in:
parent
cc127d8217
commit
b22a651c5c
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue