mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
#11569 Fix arreay add
This commit is contained in:
parent
6f89b45ce3
commit
5ad527847f
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user