diff --git a/pandora_console/godmode/reporting/cluster_builder.main.php b/pandora_console/godmode/reporting/cluster_builder.main.php
index e5002e2df1..38f8bbb486 100644
--- a/pandora_console/godmode/reporting/cluster_builder.main.php
+++ b/pandora_console/godmode/reporting/cluster_builder.main.php
@@ -250,13 +250,9 @@ elseif($step == 2){
$cluster_agents_all[$value['id_agente']] = $value['alias'];
}
- $cluster_agents_out = array();
- $cluster_agents_out = array_diff_key($template_agents_all, $template_agents_in);
+ $cluster_agents_out = array_diff_key($cluster_agents_all,$cluster_agents_in);
- $cluster_agents_in_keys = array_keys($template_agents_in);
- $cluster_agents_out_keys = array_keys($template_agents_out);
-
- html_print_select ($cluster_agents_all, 'id_agents[]', 0, false, '', '', false, true, true, '', false, 'width: 100%;', $option_style);
+ html_print_select ($cluster_agents_out, 'id_agents[]', 0, false, '', '', false, true, true, '', false, 'width: 100%;', $option_style);
echo "";
diff --git a/pandora_console/godmode/reporting/cluster_list.php b/pandora_console/godmode/reporting/cluster_list.php
index e7c3857f1e..e70aa21e06 100644
--- a/pandora_console/godmode/reporting/cluster_list.php
+++ b/pandora_console/godmode/reporting/cluster_list.php
@@ -77,8 +77,7 @@ ui_pagination (count($clusters));
foreach ($clusters as $cluster) {
$data = array ();
- $data[0] = '
'.$cluster["name"].' - Enlace Map Dani (Mapa de red)'.
- '
'.$cluster["name"].' - Enlace Enrique (pantalla informativa)';
+ $data[0] = '
'.$cluster["name"].'';
$data[1] = ui_print_truncate_text($cluster["description"], 70);
$data[2] = ui_print_group_icon($cluster['group'],true);
@@ -143,7 +142,7 @@ ui_pagination (count($clusters));
break;
}
- $data[6] = "

+ $data[6] = "

";
array_push ($table->data, $data);
diff --git a/pandora_console/images/firts_task/icono-cluster-activo.png b/pandora_console/images/firts_task/icono-cluster-activo.png
new file mode 100644
index 0000000000..49720af75d
Binary files /dev/null and b/pandora_console/images/firts_task/icono-cluster-activo.png differ
diff --git a/pandora_console/images/os_icons/so_cluster.png b/pandora_console/images/os_icons/so_cluster.png
new file mode 100644
index 0000000000..5f76cd1615
Binary files /dev/null and b/pandora_console/images/os_icons/so_cluster.png differ
diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql
index 27dbfea739..3f850e0bd0 100644
--- a/pandora_console/pandoradb_data.sql
+++ b/pandora_console/pandoradb_data.sql
@@ -142,7 +142,7 @@ INSERT INTO `tconfig_os` (`id_os`, `name`, `description`, `icon_name`) VALUES
(18, 'Switch', 'Generic switch', 'so_switch.png'),
(19, 'Satellite', 'Satellite agent', 'satellite.png'),
(20, 'Mainframe', 'Mainframe agent', 'so_mainframe.png'),
-(21, 'Cluster', 'Cluster agent', 'so_mainframe.png');
+(21, 'Cluster', 'Cluster agent', 'so_cluster.png');
UNLOCK TABLES;