From 05cb44b7ae3ae8bba697ba5b35c09919d1671507 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Fri, 23 Aug 2013 06:35:31 +0000 Subject: [PATCH] 2013-08-23 Miguel de Dios * godmode/agentes/module_manager_editor_common.php: fixed the PHP warnings. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8691 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ .../godmode/agentes/module_manager_editor_common.php | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 1505a4a537..1071a74d69 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-08-23 Miguel de Dios + + * godmode/agentes/module_manager_editor_common.php: fixed the PHP + warnings. + 2013-08-23 Miguel de Dios * godmode/agentes/modificar_agente.php, diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php index 3877edd5c6..1f07a3174f 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_common.php +++ b/pandora_console/godmode/agentes/module_manager_editor_common.php @@ -304,11 +304,14 @@ $table_advanced->data[1][4] = html_print_input_text ('module_ff_interval', $ff_i // In the data modules, the interval is not in seconds. It is a factor // to be multiplied for the agent interval -if($moduletype == MODULE_DATA) { +if ($moduletype == MODULE_DATA) { $table_advanced->data[2][0] = __('Interval'); $table_advanced->colspan[2][1] = 2; - $agent_interval = agents_get_interval ($id_agente); - $interval_factor = $interval / $agent_interval; + $interval_factor = 1; + if (isset($id_agente)) { + $agent_interval = agents_get_interval ($id_agente); + $interval_factor = $interval / $agent_interval; + } $table_advanced->data[2][1] = human_time_description_raw($interval) . ' (' . sprintf(__('Agent interval x %s'), $interval_factor) . ') ' . ui_print_help_icon ('module_interval_factor', true); } else {