From e11cbf82439d6edaf4fb4f1f40370c6243324848 Mon Sep 17 00:00:00 2001 From: darode Date: Mon, 8 Aug 2011 11:44:28 +0000 Subject: [PATCH] 2011-08-08 Dario Rodriguez * operation/agentes/sla_view.php: Fixed a bug related to a function with a wrong name. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4680 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/operation/agentes/sla_view.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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"]);