diff options
| author | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-02-07 01:06:37 +0000 |
|---|---|---|
| committer | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-02-07 01:06:37 +0000 |
| commit | f631d62508230393db97b2d1822018dcdbefb86e (patch) | |
| tree | bd500427b607c374acd0ac79725a5d6d1ff779ef /phpBB/includes/functions_admin.php | |
| parent | 4a17abbcc4950cef434e579c8fa68cc32bf8c284 (diff) | |
| download | forums-f631d62508230393db97b2d1822018dcdbefb86e.tar forums-f631d62508230393db97b2d1822018dcdbefb86e.tar.gz forums-f631d62508230393db97b2d1822018dcdbefb86e.tar.bz2 forums-f631d62508230393db97b2d1822018dcdbefb86e.tar.xz forums-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
Diffstat (limited to 'phpBB/includes/functions_admin.php')
| -rw-r--r-- | phpBB/includes/functions_admin.php | 2 |
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; } |
