diff options
author | Nils Adermann <naderman@naderman.de> | 2007-08-23 13:41:34 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2007-08-23 13:41:34 +0000 |
commit | 35b45cdff1ad3a91f0e36853c721c7ec6472490c (patch) | |
tree | b5783c7d7d430d5f2b52b7b0f8725755d93be811 /phpBB/install | |
parent | 382fe7cab41182eb0fe852de9736beaa153132b3 (diff) | |
download | forums-35b45cdff1ad3a91f0e36853c721c7ec6472490c.tar forums-35b45cdff1ad3a91f0e36853c721c7ec6472490c.tar.gz forums-35b45cdff1ad3a91f0e36853c721c7ec6472490c.tar.bz2 forums-35b45cdff1ad3a91f0e36853c721c7ec6472490c.tar.xz forums-35b45cdff1ad3a91f0e36853c721c7ec6472490c.zip |
- added an option to specify a port for the LDAP server
- restricted access to "Recent searches" to admins who are allowed to configure search [Bug #14085]
git-svn-id: file:///svn/phpbb/trunk@8064 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 1 | ||||
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 393d1d3082..4c15a4700f 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1496,6 +1496,7 @@ if (version_compare($current_version, '3.0.RC4', '<=')) // Setting this here again because new installations may not have it... set_config('cron_lock', '0', true); + set_config('ldap_port', ''); set_config('ldap_user_filter', ''); $no_updates = false; diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index abb15d08ee..279837a698 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -120,6 +120,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_username', '') INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_base_dn', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_email', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_password', ''); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_port', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_server', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_uid', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_user', ''); |