diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index 1b943f227b..c604a2fa55 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -367,7 +367,8 @@ if ($search != "") { if($id != ''){ $aux = $id[0]['id_agent']; $search_sql = " AND ( nombre " . $order_collation . " - LIKE '%$search%' OR tagente.id_agente = $aux"; + COLLATE utf8_general_ci LIKE '%$search%' OR alias ".$order_collation." COLLATE utf8_general_ci LIKE '%$search%' + OR tagente.id_agente = $aux"; if(count($id)>=2){ for ($i = 1; $i < count($id); $i++){ $aux = $id[$i]['id_agent']; @@ -377,7 +378,7 @@ if ($search != "") { $search_sql .= ")"; }else{ $search_sql = " AND ( nombre " . $order_collation . " - LIKE '%$search%' OR alias ".$order_collation." LIKE '%$search%') "; + COLLATE utf8_general_ci LIKE '%$search%' OR alias ".$order_collation." COLLATE utf8_general_ci LIKE '%$search%') "; } } @@ -428,9 +429,8 @@ if ($strict_user) { $total_agents = tags_get_all_user_agents (false, $config['id_user'], $acltags, $count_filter, $fields, false, $strict_user, true); $total_agents = count($total_agents); + $agents = tags_get_all_user_agents (false, $config['id_user'], $acltags, $filter, $fields, false, $strict_user, true); - - } else { $total_agents = agents_get_agents(array ( diff --git a/pandora_console/operation/search_agents.getdata.php b/pandora_console/operation/search_agents.getdata.php index 25acafea02..d605cbaad8 100644 --- a/pandora_console/operation/search_agents.getdata.php +++ b/pandora_console/operation/search_agents.getdata.php @@ -125,6 +125,7 @@ if ($searchAgents) { $aux = $id[0]['id_agent']; $search_sql = " t1.nombre COLLATE utf8_general_ci LIKE '%%cd " . $stringSearchSQL . "%%' OR t2.nombre COLLATE utf8_general_ci LIKE '%%" . $stringSearchSQL . "%%' OR + t1.alias COLLATE utf8_general_ci LIKE '%%" . $stringSearchSQL . "%%' OR t1.id_agente = $aux"; if (count($id) >= 2) { @@ -180,7 +181,7 @@ if ($searchAgents) { $query = $select . $sql; $query .= $limit; - + $agents = db_process_sql($query); if (empty($agents)) $agents = array();