diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-25 15:19:45 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-25 15:19:45 +0000 |
| commit | fcc22ef2b036c6c5438c227ffc13b3625860e753 (patch) | |
| tree | 65587fd3afb91d9d8cbacb9b53e0772ed554792e /phpBB/includes/acp/auth.php | |
| parent | c428ca8f239e21b98b4f0ae6a4a0e58b9f6c46f1 (diff) | |
| download | forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.tar forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.tar.gz forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.tar.bz2 forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.tar.xz forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.zip | |
show dropdown box for choosing the forum in user management screen -> permissions
git-svn-id: file:///svn/phpbb/trunk@6808 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/auth.php')
| -rw-r--r-- | phpBB/includes/acp/auth.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/includes/acp/auth.php b/phpBB/includes/acp/auth.php index 95dffb9e72..26977a6ceb 100644 --- a/phpBB/includes/acp/auth.php +++ b/phpBB/includes/acp/auth.php @@ -380,6 +380,7 @@ class auth_admin extends auth } $template->assign_var('S_ROLE_JS_ARRAY', $s_role_js_array); + unset($s_role_js_array); // Now obtain memberships $user_groups_default = $user_groups_custom = array(); @@ -481,7 +482,11 @@ class auth_admin extends auth ); $this->assign_cat_array($ug_array, $tpl_pmask . '.' . $tpl_fmask . '.' . $tpl_category, $tpl_mask, $ug_id, $forum_id, $show_trace, ($mode == 'view')); + + unset($content_array[$ug_id]); } + + unset($hold_ary[$forum_id]); } } else @@ -569,6 +574,8 @@ class auth_admin extends auth $this->assign_cat_array($forum_array, $tpl_pmask . '.' . $tpl_fmask . '.' . $tpl_category, $tpl_mask, $ug_id, $forum_id, $show_trace, ($mode == 'view')); } + + unset($hold_ary[$ug_id], $ug_names_ary[$ug_id]); } } } |
