mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12143] Oops, fixed array index
PHPBB3-12143
This commit is contained in:
parent
185fbe41c9
commit
d4095bb11d
1 changed files with 1 additions and 1 deletions
|
@ -932,7 +932,7 @@ class acp_permissions
|
||||||
$l_ug_list = '';
|
$l_ug_list = '';
|
||||||
while ($row = $db->sql_fetchrow($result))
|
while ($row = $db->sql_fetchrow($result))
|
||||||
{
|
{
|
||||||
$group_name = $group_helper->get_name($row['group_name']);
|
$group_name = $group_helper->get_name($row['name']);
|
||||||
$l_ug_list .= (($l_ug_list != '') ? ', ' : '') . ((isset($row['group_type']) && $row['group_type'] == GROUP_SPECIAL) ? '<span class="sep">' . $group_name . '</span>' : $group_name);
|
$l_ug_list .= (($l_ug_list != '') ? ', ' : '') . ((isset($row['group_type']) && $row['group_type'] == GROUP_SPECIAL) ? '<span class="sep">' . $group_name . '</span>' : $group_name);
|
||||||
}
|
}
|
||||||
$db->sql_freeresult($result);
|
$db->sql_freeresult($result);
|
||||||
|
|
Loading…
Add table
Reference in a new issue