mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Fixed error in warning agents counter. Ticket #4122
This commit is contained in:
parent
9db6a2d244
commit
8f0aef7373
@ -1383,7 +1383,7 @@ function groups_get_agents_counter ($group, $agent_filter = array(), $module_fil
|
||||
$count ++;
|
||||
break;
|
||||
case AGENT_STATUS_WARNING:
|
||||
if ($total > 0 && $critical = 0 && $warning > 0)
|
||||
if (($total > 0) && ($critical == 0) && ($warning > 0))
|
||||
$count ++;
|
||||
break;
|
||||
case AGENT_STATUS_UNKNOWN:
|
||||
|
Loading…
x
Reference in New Issue
Block a user