aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2010-05-03 19:56:19 +0200
committerNils Adermann <naderman@naderman.de>2010-05-03 19:56:19 +0200
commit0ed69d91b2ec7b4b2e86acbc1a9d65b09cad71c1 (patch)
treef56d4518ec990febb9faa480ec436df46baec10f /build
parent0ba247ef0f984ecb088f2b8ce0e114f5b48de6d5 (diff)
parent91399fd3571fc2fe95eb680564cad6103adadf59 (diff)
downloadforums-0ed69d91b2ec7b4b2e86acbc1a9d65b09cad71c1.tar
forums-0ed69d91b2ec7b4b2e86acbc1a9d65b09cad71c1.tar.gz
forums-0ed69d91b2ec7b4b2e86acbc1a9d65b09cad71c1.tar.bz2
forums-0ed69d91b2ec7b4b2e86acbc1a9d65b09cad71c1.tar.xz
forums-0ed69d91b2ec7b4b2e86acbc1a9d65b09cad71c1.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/9582] MSSQL native backups can now be restored. [ticket/9582] Advanced search cannot be accessed using MSSQL native. [ticket/9582] Removing a report reason leaves reports with an unknown reason under MSSQL native. [ticket/9582] Unable to edit CPFs from UCP under MSSQL native driver. [ticket/9582] Custom profile fields cannot be created under MSSQL native. [ticket/9520] Additionally filter requests for {common,config}.php [ticket/9520] New web.config file as suggested by Microsoft using request filter [ticket/9520] Removed per directory web.config files. [ticket/9520] Add suggested web.config for root files as suggested by Microsoft. [ticket/9520] Add some default web.config files for IIS. [develop-olympus] Basic gitignore file for cache files and backups. [ticket/9170] Unable to get image size in img bbcode when URL has multiple parameters. [feature/webpi] Validate inline with MSSQL password policy.
Diffstat (limited to 'build')
-rw-r--r--build/webpi/parameters.xml4
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"