aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2009-12-22 19:21:41 +0000
committerAndreas Fischer <bantu@phpbb.com>2009-12-22 19:21:41 +0000
commitd0c596a5eaab7439a3b32af8b9a14c12f9ae18e2 (patch)
tree3790bdb45ffb7bc2d020511951ac224c93acdffb /phpBB/install
parentbc0cc313dfc2fc175f51af8d84f3ee21d0873dee (diff)
downloadforums-d0c596a5eaab7439a3b32af8b9a14c12f9ae18e2.tar
forums-d0c596a5eaab7439a3b32af8b9a14c12f9ae18e2.tar.gz
forums-d0c596a5eaab7439a3b32af8b9a14c12f9ae18e2.tar.bz2
forums-d0c596a5eaab7439a3b32af8b9a14c12f9ae18e2.tar.xz
forums-d0c596a5eaab7439a3b32af8b9a14c12f9ae18e2.zip
Add ability to disable overall (aka board-wide) feed.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10363 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/database_update.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index acbc241c4d..2f8cb53be2 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -1573,8 +1573,12 @@ function change_database_data(&$no_updates, $version)
case '3.0.6-RC4':
break;
- // No changes from 3.0.6 to 3.0.7-RC1
+ // Changes from 3.0.6 to 3.0.7-RC1
case '3.0.6':
+
+ // ATOM Feeds
+ set_config('feed_overall', '1');
+
break;
}
}