diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2004-07-09 12:31:33 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-07-09 12:31:33 +0000 |
| commit | bdd1643a7d316bdeaeca564412b4f83cd40199fd (patch) | |
| tree | 1e9a11bb9e84062bb04c83f0b150aeca1b44a866 /phpBB/memberlist.php | |
| parent | e083255f661573641167afd52f5c41a0588e49d3 (diff) | |
| download | forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.gz forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.bz2 forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.xz forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.zip | |
- added splitting of topics to mcp
- added merging of posts to mcp
- fixed parsing of acl_getf results
- adjusted tracking code for important announcements (seems to work now)
git-svn-id: file:///svn/phpbb/trunk@4923 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/memberlist.php')
| -rw-r--r-- | phpBB/memberlist.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index 33ef6a3a9c..ebda3118d3 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -258,7 +258,7 @@ switch ($mode) $sql_forums = array(); foreach ($f_postcount_ary as $forum_id => $allow) { - if ($allow) + if ($allow['f_fread'] && $allow['f_postcount']) { $sql_forums[] = $forum_id; } @@ -284,7 +284,7 @@ switch ($mode) $sql_forums = array(); foreach ($f_forum_ary as $forum_id => $allow) { - if ($allow) + if ($allow['f_read']) { $sql_forums[] = $forum_id; } |
