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:
vgilc 2018-09-21 11:57:54 +02:00
commit b68161c9ea
1 changed files with 1 additions and 1 deletions

View File

@ -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) {