Fixed nodes count in pandora_networkmap

This commit is contained in:
danielmaya 2018-11-02 11:32:07 +01:00
parent d79a918eed
commit 3c78e387df
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ switch ($tab) {
}
}
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
}
}