Improve code for get secondary groups

This commit is contained in:
José González 2021-07-02 12:20:53 +02:00
parent 159920a05d
commit 498a353a29
2 changed files with 5 additions and 2 deletions

View File

@ -500,7 +500,10 @@ if (enterprise_installed()) {
false, false,
// Delete_groups. // Delete_groups.
// Do not show the primary group in this selection. // Do not show the primary group in this selection.
array_merge(($secondary_groups_selected['plain'] ?? []), [$agent['id_grupo']]) array_merge(
(empty($secondary_groups_selected['plain']) === false) ? $secondary_groups_selected['plain'] : [],
[$agent['id_grupo']]
)
// Include_groups. // Include_groups.
// Size. // Size.
// Simple_multiple_options. // Simple_multiple_options.

View File

@ -4843,7 +4843,7 @@ function events_page_general($event)
if (isset($event['id_agente']) && $event['id_agente'] > 0) { if (isset($event['id_agente']) && $event['id_agente'] > 0) {
enterprise_include_once('include/functions_agents.php'); enterprise_include_once('include/functions_agents.php');
$secondary_groups_selected = enterprise_hook('agents_get_secondary_groups', [$event['id_agente'], is_metaconsole()]); $secondary_groups_selected = enterprise_hook('agents_get_secondary_groups', [$event['id_agente'], is_metaconsole()]);
if (!empty($secondary_groups_selected)) { if (empty($secondary_groups_selected['for_select']) === false) {
$secondary_groups = implode(', ', $secondary_groups_selected['for_select']); $secondary_groups = implode(', ', $secondary_groups_selected['for_select']);
} }
} }