#11569 Fix arreay add

This commit is contained in:
miguel angel rasteu 2023-06-15 12:48:13 +02:00
parent 6f89b45ce3
commit 5ad527847f
1 changed files with 3 additions and 1 deletions

View File

@ -4253,7 +4253,9 @@ function reporting_group_report($report, $content)
$data_node = reporting_groups_nodes($content);
$count_events += $data_node['count_events'];
foreach ($data_node['group_stats'] as $key => $value) {
$group_stats[$key] += $value;
if (array_key_exists($key, $group_stats)) {
$group_stats[$key] += $value;
}
}
if (is_metaconsole() === true) {