1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-25 02:51:35 +02:00

[ticket/17200] Remove not needed addition

PHPBB3-17200
This commit is contained in:
GanstaZ
2023-10-28 16:52:32 +03:00
committed by Marc Alexander
parent 79b8f56427
commit 5ab3916311

View File

@@ -476,7 +476,7 @@ while ($row = $db->sql_fetchrow($result))
$colour_text = ($row['group_colour']) ? ' style="color:#' . $row['group_colour'] . '"' : '';
$group_name = $group_helper->get_name($row['group_name']);
if ($row['group_name'] == 'BOTS' || ($user->data['user_id'] != ANONYMOUS && !$auth->acl_get('u_viewprofile')))
if ($row['group_name'] == 'BOTS')
{
$legend[] = '<span' . $colour_text . '>' . $group_name . '</span>';
}