diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 33f7b97c45..717f6c75dc 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2014-04-02 Miguel de Dios + + * operation/search_results.php, operation/search_users.getdata.php: + fixed the count of user in the global search main page. + + Incident: #710 + 2014-04-02 Vanessa Gil * godmode/menu.php diff --git a/pandora_console/operation/search_results.php b/pandora_console/operation/search_results.php index 5a4b8d44db..1e8209cf1f 100644 --- a/pandora_console/operation/search_results.php +++ b/pandora_console/operation/search_results.php @@ -15,7 +15,7 @@ // GNU General Public License for more details. global $config; -require_once ($config['homedir']."/include/functions_reporting.php"); +require_once ($config['homedir'] . "/include/functions_reporting.php"); // Load enterprise extensions enterprise_include ('operation/reporting/custom_reporting.php'); diff --git a/pandora_console/operation/search_users.getdata.php b/pandora_console/operation/search_users.getdata.php index e5dd296e73..9be89bba44 100644 --- a/pandora_console/operation/search_users.getdata.php +++ b/pandora_console/operation/search_users.getdata.php @@ -150,21 +150,14 @@ if ($searchUsers) { unset($users); } - if (!$users_id) { - $user_condition = ""; - } - else { - // Condition with the visible agents - $user_condition = " AND id_user IN (\"".implode('","',$users_id)."\")"; - } $sql = "SELECT COUNT(id_user) AS count FROM tusuario - WHERE (fullname LIKE '%" . $stringSearchSQL . "%' OR + WHERE id_user LIKE '%" . $stringSearchSQL . "%' OR + fullname LIKE '%" . $stringSearchSQL . "%' OR firstname LIKE '%" . $stringSearchSQL . "%' OR lastname LIKE '%" . $stringSearchSQL . "%' OR middlename LIKE '%" . $stringSearchSQL . "%' OR - email LIKE '%" . $stringSearchSQL . "%')".$user_condition; - + email LIKE '%" . $stringSearchSQL . "%'"; $totalUsers = db_get_value_sql($sql); } else {