From 28048fb528d8e76678ed3a6f02ceaf2e4edf6641 Mon Sep 17 00:00:00 2001 From: juanmanuelr Date: Wed, 9 Jan 2013 12:38:49 +0000 Subject: [PATCH] 2013-01-09 Juan Manuel Ramon * include/functions_agents.php: Changed constraint in agent creation about the interval (now only greater than zero). Merged from branches. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7392 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 7 +++++++ pandora_console/include/functions_agents.php | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index cb2cca04d8..2a264ca382 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2013-01-09 Juan Manuel Ramon + + * include/functions_agents.php: Changed constraint in agent creation + about the interval (now only greater than zero). + + Merged from branches. + 2013-01-09 Juan Manuel Ramon * godmode/agentes/module_manager_editor_prediction.php: Fixed bug diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 703720d798..ddb1d5ec68 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -70,7 +70,9 @@ function agents_create_agent ($name, $id_group, $interval, $ip_address, $values return false; if (empty ($ip_address)) return false; - $interval = safe_int ($interval,1, SECONDS_5MINUTES); + // Check interval greater than zero + if ($interval < 0) + $interval = false; if (empty ($interval)) return false; if (! is_array ($values))