2014-04-02 Miguel de Dios <miguel.dedios@artica.es>
* operation/search_results.php, operation/search_users.getdata.php: fixed the count of user in the global search main page. Incident: #710 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9702 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
a4dd11d017
commit
667080b5c6
|
@ -1,3 +1,10 @@
|
|||
2014-04-02 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* 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 <vanessa.gil@artica.es>
|
||||
|
||||
* godmode/menu.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 {
|
||||
|
|
Loading…
Reference in New Issue