diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 222e739bbb..59ca5cd834 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-08-08 Dario Rodriguez + + * operation/agentes/sla_view.php: Fixed a bug related to a function + with a wrong name. + 2011-08-08 Sergio Martin * include/config_process.php diff --git a/pandora_console/operation/agentes/sla_view.php b/pandora_console/operation/agentes/sla_view.php index 1a7d54479e..b5ab128cb8 100644 --- a/pandora_console/operation/agentes/sla_view.php +++ b/pandora_console/operation/agentes/sla_view.php @@ -126,7 +126,7 @@ if ($result !== false) { foreach ($result as $sla_data) { $data = array (); $data[0] = ui_print_moduletype_icon ($modules[$sla_data["id_agent_module"]]["id_tipo_modulo"], true); - $data[1] = print_string_substr ($modules[$sla_data["id_agent_module"]]["nombre"], 25, true); + $data[1] = ui_print_string_substr ($modules[$sla_data["id_agent_module"]]["nombre"], 25, true); $data[1] .= "(".$sla_data["sla_min"]." / ".$sla_data["sla_max"]." / ".$sla_data["sla_limit"].")"; $data[2] = format_numeric (reporting_get_agentmodule_sla ($sla_data["id_agent_module"], $config["sla_period"], 1)).'%'; $status = modules_get_agentmodule_status ($sla_data["id_agent_module"]);