mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-28 18:49:52 +02:00
- forum administration (now working and modified for easier handling the different forum types [UI])
- Changed += for arrays into array_merge. We do not want to append, we want to merge. ;) git-svn-id: file:///svn/phpbb/trunk@5330 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -133,8 +133,8 @@ else
|
||||
get_moderators($moderators, $forum_id);
|
||||
}
|
||||
|
||||
// Output forum listing if it is postable
|
||||
if ($forum_data['forum_type'] == FORUM_POST || ($forum_data['forum_flags'] & 16))
|
||||
// Output forum listing if it is postable or active topics
|
||||
if ($forum_data['forum_type'] == FORUM_POST || (($forum_data['forum_flags'] & 16) && $forum_data['forum_type'] == FORUM_CAT))
|
||||
{
|
||||
// Handle marking posts
|
||||
if ($mark_read == 'topics')
|
||||
|
Reference in New Issue
Block a user