diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 33f20feb22..e3a3033fb1 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-03-09 Miguel de Dios + + * operation/search_results.php: fixed the result when call a function db + with new method. + 2010-03-09 Miguel de Dios * godmode/gis_maps/configure_gis_map.php: fix the request var when it is diff --git a/pandora_console/operation/search_results.php b/pandora_console/operation/search_results.php index 7d4577419b..f3fd9a686d 100644 --- a/pandora_console/operation/search_results.php +++ b/pandora_console/operation/search_results.php @@ -50,14 +50,15 @@ if ($searchTab == 'agents') { LIMIT " . $config['block_size'] . " OFFSET " . get_parameter ('offset',0); $agents = process_sql($sql); - $sql = "SELECT count(id_agente) + $sql = "SELECT count(id_agente) AS count FROM tagente INNER JOIN tgrupo ON tgrupo.id_grupo = tagente.id_grupo WHERE tagente.nombre COLLATE utf8_general_ci LIKE '%" . $stringSearchSQL . "%' OR tgrupo.nombre LIKE '%" . $stringSearchSQL . "%'"; $totalAgents = get_db_row_sql($sql); - $totalAgents = $totalAgents[0]; + + $totalAgents = $totalAgents['count']; } }