From cc43a909966e697a7a710c6efade1bcffc24db2e Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 22 Dec 2009 19:26:25 +0000 Subject: [PATCH] Forgot to add this to the commit list. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10364 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/feed.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/phpBB/feed.php b/phpBB/feed.php index 0ab7d42fce..f7349a21cf 100644 --- a/phpBB/feed.php +++ b/phpBB/feed.php @@ -388,8 +388,12 @@ class phpbb_feed_factory { return new phpbb_feed_forum($forum_id); } + else if ($config['feed_overall']) + { + return new phpbb_feed_overall(); + } - return new phpbb_feed_overall(); + return false; break; } }