diff options
author | Andreas Fischer <bantu@phpbb.com> | 2009-12-23 02:59:44 +0000 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2009-12-23 02:59:44 +0000 |
commit | 749fe6f9d08ebc0ba534e115a0a009fa439dd4b7 (patch) | |
tree | 27995b6d3810155a5748902f5da7296b8767d0b1 | |
parent | a7ecefd89d3cb36913148a95232f9a28cb1ad7e0 (diff) | |
download | forums-749fe6f9d08ebc0ba534e115a0a009fa439dd4b7.tar forums-749fe6f9d08ebc0ba534e115a0a009fa439dd4b7.tar.gz forums-749fe6f9d08ebc0ba534e115a0a009fa439dd4b7.tar.bz2 forums-749fe6f9d08ebc0ba534e115a0a009fa439dd4b7.tar.xz forums-749fe6f9d08ebc0ba534e115a0a009fa439dd4b7.zip |
Turn all forums feed off by default.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10373 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index de613ebbca..e1aa34b5a8 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -101,7 +101,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_post_confir INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_enable', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_limit_post', '15'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_limit_topic', '10'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall_forums', '1'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall_forums', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall_topics', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_forum', '1'); |