diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index a859ebbc19..b0c9789249 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2011-08-23 Miguel de Dios + + * godmode/agentes/agent_manager.php: fixed typo mistake. + 2011-08-23 Sergio Martin * include/functions_networkmap.php: Fixed a unecessary toLower diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index 309134b544..1949af9c78 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -27,7 +27,7 @@ if (is_ajax ()) { $filter = array (); - switch ($config['db_type']){ + switch ($config['dbtype']){ case "mysql": case "postgresql": $filter[] = '(nombre COLLATE utf8_general_ci LIKE "%'.$string.'%" OR direccion LIKE "%'.$string.'%" OR comentarios LIKE "%'.$string.'%")';