diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-09-21 22:09:18 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-09-21 22:09:18 +0000 |
commit | 357f6a725fd8d70a09af3e9b0c5689bf95896dad (patch) | |
tree | e59512423337aa0f4f0a01cc17d6d49b3d6e4c48 | |
parent | 8e0d23487ded79334f37272a3e24b209530218c5 (diff) | |
download | forums-357f6a725fd8d70a09af3e9b0c5689bf95896dad.tar forums-357f6a725fd8d70a09af3e9b0c5689bf95896dad.tar.gz forums-357f6a725fd8d70a09af3e9b0c5689bf95896dad.tar.bz2 forums-357f6a725fd8d70a09af3e9b0c5689bf95896dad.tar.xz forums-357f6a725fd8d70a09af3e9b0c5689bf95896dad.zip |
Some missing config values and one auth setting
git-svn-id: file:///svn/phpbb/trunk@5222 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 3c6aaf9597..6b4cd59fdc 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -165,6 +165,8 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_name', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_port', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_gc', '3600'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_length', '3600'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_autologin', '1'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_autologin_time', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc', 'A _little_ text to describe your forum'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename', 'yourdomain.com'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_path', 'images/smilies'); @@ -284,6 +286,7 @@ INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_sendemail', 1 INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_readpm', 1); INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_sendpm', 1); INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_sendim', 1); +INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_ignoreflood', 1); INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_hideonline', 1); INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_viewonline', 1); INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_viewprofile', 1); |