aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin/admin_groups.php
diff options
context:
space:
mode:
authordougk_ff7 <dougk_ff7@users.sourceforge.net>2002-03-19 15:39:06 +0000
committerdougk_ff7 <dougk_ff7@users.sourceforge.net>2002-03-19 15:39:06 +0000
commit92e1d351800b76b966be63230cc38cc260ba23a5 (patch)
treec460d3f886cc8a809b0bdda7c68f39ff7f06a133 /phpBB/admin/admin_groups.php
parente626b1a89311dd329bd2f350a6614fd7c776bf0e (diff)
downloadforums-92e1d351800b76b966be63230cc38cc260ba23a5.tar
forums-92e1d351800b76b966be63230cc38cc260ba23a5.tar.gz
forums-92e1d351800b76b966be63230cc38cc260ba23a5.tar.bz2
forums-92e1d351800b76b966be63230cc38cc260ba23a5.tar.xz
forums-92e1d351800b76b966be63230cc38cc260ba23a5.zip
Here we have the pleasure of fixing bugs 526891 and 530830. Both have been tested on my local copy, and they should be ready!
git-svn-id: file:///svn/phpbb/trunk@2351 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin/admin_groups.php')
-rw-r--r--phpBB/admin/admin_groups.php10
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
+?>