From 672810b0e0b5913b161a6a6b709fd2f819e6c5c7 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Thu, 8 Sep 2011 16:52:46 +0000 Subject: [PATCH] 2011-09-08 Miguel de Dios * include/functions_api.php: fixed the array key for module name. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4932 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 4 ++++ pandora_console/include/functions_api.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index ebcfbd9a37..d3df4dd070 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2011-09-08 Miguel de Dios + + * include/functions_api.php: fixed the array key for module name. + 2011-09-08 Miguel de Dios * include/functions_api.php: fixed in function "otherParameter2Filter" the diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index ded437bc33..fa0563453e 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -839,7 +839,7 @@ function otherParameter2Filter($other) { $idAgentModulo = null; if ($other['data'][3] != '') { - $filterModule = array('nombre' => $other['data'][2]); + $filterModule = array('nombre' => $other['data'][3]); if ($idAgent != null) { $filter['id_agente'] = $idAgent; }