diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 159e5aadab..308594f43a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,13 @@ +2013-08-30 Miguel de Dios + + * operation/agentes/estado_generalagente.php: show a warning + message when the agent has not a assigned server. + + * operation/agentes/ver_agente.php: some changes for to make more + easy the merge with the trunk. + + MERGED FROM THE TRUNK. + 2013-08-30 Miguel de Dios * godmode/groups/group_list.php: fixed pagination mismatch. @@ -18,7 +28,8 @@ * godmode/agentes/module_manager_editor_common.php: added code to policy module editor with disabled unknown events modules. -2013-08-28 Miguel de Dios +2013-08-28 Miguel de Dios * include/functions_modules.php: fixed the massive copy modules between agents. diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index 7bc804f199..cb6ece9cc0 100644 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -32,6 +32,11 @@ $id_agente = get_parameter_get ("id_agente", -1); $agent = db_get_row ("tagente", "id_agente", $id_agente); +if (empty($agent['server_name'])) { + ui_print_error_message( + __('The agent has not assigned server. Maybe agent does not run fine.')); +} + if ($agent === false) { ui_print_error_message(__('There was a problem loading agent')); return; @@ -119,8 +124,9 @@ $table_agent->rowclass[] = ''; $addresses = agents_get_addresses($id_agente); $address = agents_get_address($id_agente); + foreach ($addresses as $k => $add) { - if($add == $address) { + if ($add == $address) { unset($addresses[$k]); } } diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index 0c27bd86cc..329f99db93 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -347,8 +347,8 @@ if (is_ajax ()) { if (metaconsole_load_external_db($connection) == NOERR) { /* Get all agents if no agent was given */ if ($id_agent == 0) - $id_agent = array_keys ( - agents_get_group_agents ( + $id_agent = array_keys( + agents_get_group_agents( array_keys (users_get_groups ()), $search, "none")); $agent_modules = agents_get_modules ($id_agent, @@ -362,14 +362,16 @@ if (is_ajax ()) { else { /* Get all agents if no agent was given */ if ($id_agent == 0) - $id_agent = array_keys (agents_get_group_agents (array_keys (users_get_groups ()), $search, "none")); + $id_agent = array_keys( + agents_get_group_agents( + array_keys(users_get_groups ()), $search, "none")); $agent_modules = agents_get_modules ($id_agent, ($fields != '' ? explode (',', $fields) : "*"), ($filter != '' ? $filter : false), $indexed); } - foreach($agent_modules as $key => $module) { + foreach ($agent_modules as $key => $module) { $agent_modules[$key]['nombre'] = io_safe_output($module['nombre']); } @@ -687,6 +689,7 @@ $tab = get_parameter ("tab", "main"); /* Manage tab */ $managetab = ""; + if (check_acl ($config['id_user'],$id_grupo, "AW") || $is_extra) { $managetab['text'] ='' . html_print_image("images/setup.png", true, array ("title" => __('Manage'))) @@ -705,16 +708,19 @@ if (check_acl ($config['id_user'],$id_grupo, "AW") || $is_extra) { $maintab['text'] = '' . html_print_image("images/agent_mc.png", true, array("title" => __('Main'))) . ''; + if ($tab == 'main') $maintab['active'] = true; else $maintab['active'] = false; + /* Alert tab */ $alerttab['text'] = '' . html_print_image("images/op_alerts.png", true, array("title" => __('Alerts'))) . ''; + if ($tab == 'alert') $alerttab['active'] = true; else @@ -737,6 +743,7 @@ $policyTab = enterprise_hook('policy_tab'); if ($policyTab == -1) $policyTab = ""; + /* GIS tab */ $gistab=""; if ($config['activate_gis']) { @@ -821,7 +828,7 @@ if ($agent['url_address'] != '') { } //Tabs for extensions -foreach($config['extensions'] as $extension) { +foreach ($config['extensions'] as $extension) { if (isset($extension['extension_ope_tab'])) { //VMware extension is only available for VMware OS @@ -870,7 +877,7 @@ foreach($config['extensions'] as $extension) { $extension_tab = array('text' => '' . html_print_image ($image, true, array ( "title" => $name)) . '', 'active' => $active); - $onheader = $onheader + array($id => $extension_tab); + $onheader = $onheader + array($id => $extension_tab); } }