diff options
Diffstat (limited to 'phpBB/admin/admin_groups.php')
-rw-r--r-- | phpBB/admin/admin_groups.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/admin/admin_groups.php b/phpBB/admin/admin_groups.php index 6ae809ff20..dbce1cb6a6 100644 --- a/phpBB/admin/admin_groups.php +++ b/phpBB/admin/admin_groups.php @@ -8,7 +8,6 @@ * * $Id$ * - * ***************************************************************************/ /*************************************************************************** @@ -25,7 +24,9 @@ define('IN_PHPBB', 1); if( !empty($setmodules) ) { $filename = basename(__FILE__); - $module['Groups']['Manage'] = $filename; + $module['Groups']['Create'] = $filename . "SID&mode=create"; + $module['Groups']['Delete'] = $filename . "SID&mode=delete"; + $module['Groups']['Manage'] = $filename . "SID&mode=manage"; return; } |