aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Woody <a_jelly_doughnut@phpbb.com>2010-02-07 01:06:37 +0000
committerJosh Woody <a_jelly_doughnut@phpbb.com>2010-02-07 01:06:37 +0000
commitf631d62508230393db97b2d1822018dcdbefb86e (patch)
treebd500427b607c374acd0ac79725a5d6d1ff779ef
parentMerge r10473 into the 3.0.7 branch. (diff)
downloadphpbb-f631d62508230393db97b2d1822018dcdbefb86e.tar.gz
phpbb-f631d62508230393db97b2d1822018dcdbefb86e.tar.bz2
phpbb-f631d62508230393db97b2d1822018dcdbefb86e.zip
Fix #57395, a regression from r10427
(merging r10482 into branch_3_0_7) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_7@10483 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/includes/functions_admin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php
index a1bc2e7795..ff291fbe8a 100644
--- a/phpBB/includes/functions_admin.php
+++ b/phpBB/includes/functions_admin.php
@@ -102,7 +102,7 @@ function make_forum_select($select_id = false, $ignore_id = false, $ignore_acl =
{
$disabled = true;
}
- else if (!$only_acl_post && !$auth->acl_gets(array('a_forum', 'a_forumadd', 'a_forumdel'), $row['forum_id']))
+ else if (!$only_acl_post && !$auth->acl_gets(array('f_list', 'a_forum', 'a_forumadd', 'a_forumdel'), $row['forum_id']))
{
$disabled = true;
}