fixed visual error
This commit is contained in:
parent
0195a80b78
commit
667ccd50ce
|
@ -663,12 +663,17 @@ function ui_print_group_icon($id_group, $return=false, $path='groups_small', $st
|
|||
if (empty($icon)) {
|
||||
$output .= '<span title="'.groups_get_name($id_group, true).'"> </span>';
|
||||
} else {
|
||||
$class = 'bot';
|
||||
if ($icon === 'transmit') {
|
||||
$class .= ' invert_filter';
|
||||
}
|
||||
|
||||
$output .= html_print_image(
|
||||
'images/'.$path.'/'.$icon.'.png',
|
||||
true,
|
||||
[
|
||||
'style' => $style,
|
||||
'class' => 'bot',
|
||||
'class' => $class,
|
||||
'alt' => groups_get_name($id_group, true),
|
||||
'title' => groups_get_name($id_group, true),
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue