1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

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
This commit is contained in:
Andreas Fischer
2009-12-22 19:26:25 +00:00
parent d0c596a5ea
commit cc43a90996

View File

@@ -388,8 +388,12 @@ class phpbb_feed_factory
{ {
return new phpbb_feed_forum($forum_id); 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; break;
} }
} }