mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Case insensitive in tree view filter search #9
This commit is contained in:
parent
0933ccd5a6
commit
21c2b93637
@ -234,7 +234,7 @@ class Tree {
|
|||||||
// Agent name filter
|
// Agent name filter
|
||||||
$agent_search_filter = "";
|
$agent_search_filter = "";
|
||||||
if (!empty($this->filter['searchAgent'])) {
|
if (!empty($this->filter['searchAgent'])) {
|
||||||
$agent_search_filter = " AND ta.nombre LIKE '%".$this->filter['searchAgent']."%' ";
|
$agent_search_filter = " AND LOWER(ta.nombre) LIKE LOWER('%".$this->filter['searchAgent']."%')";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Agent status filter
|
// Agent status filter
|
||||||
|
Loading…
x
Reference in New Issue
Block a user