Merge branch 'ent-2807-falla-el-filtro-de-busqueda-de-groups-en-los-tree-view-que-no-son-el-de-grupos' into 'develop'
Fixed search group in others tree views See merge request artica/pandorafms!1796
This commit is contained in:
commit
b68161c9ea
|
@ -268,7 +268,7 @@ class Tree {
|
|||
|
||||
protected function getGroupSearchFilter() {
|
||||
if (empty($this->filter['searchGroup'])) return "";
|
||||
return " AND tg.nombre LIKE '%" . $this->filter['searchGroup'] . "%'";
|
||||
return " AND tg.nombre LIKE '%%" . $this->filter['searchGroup'] . "%%'";
|
||||
}
|
||||
|
||||
static function cmpSortNames($a, $b) {
|
||||
|
|
Loading…
Reference in New Issue