diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-07 00:06:27 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-07 00:06:27 +0000 |
commit | 284dc92e0864106b2d5f1598259967bc78973d21 (patch) | |
tree | 9071449f56cef417cbd92d0335631ac22947ec93 | |
parent | bab1021f8c8661e71b9ea2f9323c1d0488a77f98 (diff) | |
download | forums-284dc92e0864106b2d5f1598259967bc78973d21.tar forums-284dc92e0864106b2d5f1598259967bc78973d21.tar.gz forums-284dc92e0864106b2d5f1598259967bc78973d21.tar.bz2 forums-284dc92e0864106b2d5f1598259967bc78973d21.tar.xz forums-284dc92e0864106b2d5f1598259967bc78973d21.zip |
LDAP config options
git-svn-id: file:///svn/phpbb/trunk@2835 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/schemas/mysql_basic.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_basic.sql b/phpBB/install/schemas/mysql_basic.sql index 27a035fc55..909cc4368b 100644 --- a/phpBB/install/schemas/mysql_basic.sql +++ b/phpBB/install/schemas/mysql_basic.sql @@ -81,6 +81,10 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('limit_load', '2.0' INSERT INTO phpbb_config (config_name, config_value) VALUES ('active_sessions', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_gc', '3600'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_last_gc', '0'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_server', ''); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_base_dn', ''); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_uid', ''); + INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '2.1.0 [20020430]'); |