Fixed error in warning agents counter. Ticket #4122
(cherry picked from commit 8f0aef7373
)
This commit is contained in:
parent
404e0bd746
commit
0cb22a9b8a
|
@ -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…
Reference in New Issue