1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-20 23:41:29 +02:00

added ability to hide coppa groups (mainly applied to permission screens)

git-svn-id: file:///svn/phpbb/trunk@5744 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-03-28 17:10:07 +00:00
parent fe9590cf5a
commit 7e47a8ddb0
8 changed files with 26 additions and 10 deletions

View File

@@ -564,7 +564,10 @@ class acp_groups
$result = $db->sql_query_limit($sql, $config['topics_per_page'], $start);
$leader = $member = 0;
$group_data = array();
$group_data = array(
'leader' => array(),
'member' => array(),
);
while ($row = $db->sql_fetchrow($result))
{