From 356a94c0c23c2987bd6a38e35a2780200ce64efa Mon Sep 17 00:00:00 2001 From: Vanessa Gil Date: Wed, 10 Sep 2014 17:08:48 +0200 Subject: [PATCH] Fixed bug:Error to assign server plugins using templates. Ticket #1161 pandora_console/godmode/agentes/agent_template.php --- pandora_console/godmode/agentes/agent_template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/agent_template.php b/pandora_console/godmode/agentes/agent_template.php index 3f973fd114..651d5efe7f 100644 --- a/pandora_console/godmode/agentes/agent_template.php +++ b/pandora_console/godmode/agentes/agent_template.php @@ -57,6 +57,7 @@ if (isset ($_POST["template_id"])) { foreach ($npc as $row) { $nc = db_get_all_rows_field_filter ("tnetwork_component", "id_nc", $row["id_nc"]); + if ($nc === false) { $nc = array (); } @@ -96,7 +97,7 @@ if (isset ($_POST["template_id"])) { 'warning_instructions' => $row2['warning_instructions'], 'unknown_instructions' => $row2['unknown_instructions'], 'id_category' => $row2['id_category'], - 'module_macros' => $row2['module_macros'], + 'macros' => $row2['macros'], 'each_ff' => $row2['each_ff'], 'min_ff_event' => $row2['min_ff_event'], 'min_ff_event_normal' => $row2['min_ff_event_normal'],