#12684 Fix tree view filter

This commit is contained in:
miguel angel rasteu 2023-12-27 13:20:36 +01:00
parent dd322ad283
commit 696ca72a80
1 changed files with 1 additions and 3 deletions

View File

@ -1068,9 +1068,7 @@ class Tree
$module_search_filter = '';
if (!empty($this->filter['searchModule'])) {
$module_search_inner = '
INNER JOIN tagente_estado tae
ON tae.id_agente_modulo = tam.id_agente_modulo';
$module_search_inner = '';
$module_search_filter = "AND tam.disabled = 0
AND tam.nombre LIKE '%%".$this->filter['searchModule']."%%' ".$this->getModuleStatusFilterFromTestado();
}