#7555 fixed module_search with filter

This commit is contained in:
Daniel Maya 2021-05-19 17:11:41 +02:00
parent f3eb560518
commit 9559a63c3b

View File

@ -535,6 +535,15 @@ class EventsListWidget extends Widget
$filter['tag_without'] = base64_encode( $filter['tag_without'] = base64_encode(
json_encode($filter['tag_without']) json_encode($filter['tag_without'])
); );
if (!empty($filter['id_agent_module'])) {
$name = \modules_get_modules_name(
' FROM tagente_modulo',
' WHERE id_agente_modulo = '.$filter['id_agent_module'],
is_metaconsole()
);
$filter['module_search'] = $name[0]['nombre'];
}
} else { } else {
// Filtering. // Filtering.
$filter['event_view_hr'] = $hours; $filter['event_view_hr'] = $hours;