mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 16:24:54 +02:00
Merge branch '33-buscador-en-gestion-de-agentes-es-case-sensitive-integria-4398' into 'develop'
Make case insensitive search bar in agent manager - #33 See merge request !320
This commit is contained in:
commit
5e4032e4de
@ -293,8 +293,8 @@ if ($search != "") {
|
|||||||
$search_sql .= ")";
|
$search_sql .= ")";
|
||||||
}else{
|
}else{
|
||||||
$search_sql = " AND ( nombre " . $order_collation . "
|
$search_sql = " AND ( nombre " . $order_collation . "
|
||||||
LIKE '%$search%' OR alias " . $order_collation . "
|
LIKE LOWER('%$search%') OR alias " . $order_collation . "
|
||||||
LIKE '%$search%') ";
|
LIKE LOWER('%$search%')) ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user