diff options
author | Chris Smith <toonarmy@phpbb.com> | 2009-07-17 13:21:03 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2009-07-17 13:21:03 +0000 |
commit | 5f6db9584c4b2594c437a07c0ecd60390ff39d5e (patch) | |
tree | 1842e3871c4698ed7c2240b06af4266dd209a2a8 /phpBB/config.php | |
parent | ab9715a9fe5577921180a6f77b5a89b990665b6e (diff) | |
download | forums-5f6db9584c4b2594c437a07c0ecd60390ff39d5e.tar forums-5f6db9584c4b2594c437a07c0ecd60390ff39d5e.tar.gz forums-5f6db9584c4b2594c437a07c0ecd60390ff39d5e.tar.bz2 forums-5f6db9584c4b2594c437a07c0ecd60390ff39d5e.tar.xz forums-5f6db9584c4b2594c437a07c0ecd60390ff39d5e.zip |
Correct escaping/unescaping in the LDAP authentication plugin. #48175
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9769 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/config.php')
-rw-r--r-- | phpBB/config.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index e69de29bb2..fcfbc98bc2 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -0,0 +1,17 @@ +<?php +// phpBB 3.0.x auto-generated configuration file +// Do not change anything in this file! +$dbms = 'mysqli'; +$dbhost = ''; +$dbport = ''; +$dbname = 'phpbb'; +$dbuser = 'root'; +$dbpasswd = 'testing'; +$table_prefix = 'phpbb_'; +$acm_type = 'file'; +$load_extensions = ''; + +@define('PHPBB_INSTALLED', true); +@define('DEBUG', true); +@define('DEBUG_EXTRA', true); +?> |