From 3a423acbdd745c9e9f6dc8f61ee75289ee67b120 Mon Sep 17 00:00:00 2001 From: juanmanuelr Date: Mon, 30 May 2011 08:09:22 +0000 Subject: [PATCH] 2011-05-30 Juan Manuel Ramon * godmode/agentes/module_manager_editor.php: Added prefix "modules_" to function get_agentmodule_name(). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4387 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/godmode/agentes/module_manager_editor.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index bb61bddf9f..484b0d9a2a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-05-30 Juan Manuel Ramon + + * godmode/agentes/module_manager_editor.php: Added prefix "modules_" + to function get_agentmodule_name(). + 2011-05-30 Junichi Satoh * operation/agentes/datos_agente.php: Replaced format_data with diff --git a/pandora_console/godmode/agentes/module_manager_editor.php b/pandora_console/godmode/agentes/module_manager_editor.php index e231f9064d..26e4613817 100644 --- a/pandora_console/godmode/agentes/module_manager_editor.php +++ b/pandora_console/godmode/agentes/module_manager_editor.php @@ -270,7 +270,7 @@ switch ($moduletype) { if ($config['enterprise_installed'] && $remote_conf) { if($id_agent_module) { enterprise_include_once('include/functions_config_agents.php'); - $configuration_data = enterprise_hook('config_agents_get_module_from_conf', array($id_agente, get_agentmodule_name($id_agent_module))); + $configuration_data = enterprise_hook('config_agents_get_module_from_conf', array($id_agente, modules_get_agentmodule_name($id_agent_module))); } enterprise_include ('godmode/agentes/module_manager_editor_data.php'); }