Fixed nodes count in pandora_networkmap

This commit is contained in:
danielmaya 2018-11-02 11:32:07 +01:00
parent d79a918eed
commit 3c78e387df

View File

@ -639,7 +639,7 @@ switch ($tab) {
} }
} }
else { else {
$data['nodes'] = $count - 1; //PandoraFMS node is not an agent $data['nodes'] = ($network_map['id_group'] == 0) ? $count - 1 : $count; //PandoraFMS node is not an agent
} }
} }