diff options
Diffstat (limited to 'phpBB/admin/admin_groups.php')
-rw-r--r-- | phpBB/admin/admin_groups.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/admin/admin_groups.php b/phpBB/admin/admin_groups.php index 1e6bed8b26..e66aa2187b 100644 --- a/phpBB/admin/admin_groups.php +++ b/phpBB/admin/admin_groups.php @@ -343,9 +343,17 @@ else "S_GROUP_SELECT" => $select_list) ); + // + // Faking the IF... ELSE statements again... + // + if( count($group_list) > 0 ) + { + $template->assign_block_vars("select_box", array()); + } + $template->pparse('body'); } include('page_footer_admin.'.$phpEx); -?>
\ No newline at end of file +?> |