Don't show image for groups without icon - #3446

Former-commit-id: 6a67e368a2aef7f2df04a3937a0466064fa6894e
This commit is contained in:
tatiana.llorente@artica.es 2019-01-28 17:06:35 +01:00
parent 042bf1c6e7
commit 7bc5fb47a0
1 changed files with 17 additions and 11 deletions

View File

@ -491,17 +491,23 @@ else{
$url_delete = "index.php?sec=gagente&sec2=godmode/groups/group_list&delete_group=1&id_group=" . $group['id_grupo'];
$table->data[$key][0] = $group['id_grupo'];
$table->data[$key][1] = "<a href='$url'>" . $group['nombre'] . "</a>";
$table->data[$key][2] = html_print_image(
"images/groups_small/" . $group['icon'] . ".png",
true,
array(
"style" => '',
"class" => "bot",
"alt" => $group['nombre'],
"title" => $group['nombre'],
false, false, false, true
)
);
if($group['icon'] != ''){
$table->data[$key][2] = html_print_image(
"images/groups_small/" . $group['icon'] . ".png",
true,
array(
"style" => '',
"class" => "bot",
"alt" => $group['nombre'],
"title" => $group['nombre'],
false, false, false, true
)
);
}
else{
$table->data[$key][2] = "";
}
//reporting_get_group_stats
$table->data[$key][3] = $group['disabled'] ? __('Disabled') : __('Enabled');