Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fix #3837 - better management of hosts states options
Browse files Browse the repository at this point in the history
  • Loading branch information
julienmathis committed Oct 21, 2015
1 parent bbdb3e0 commit 3f49c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/include/eventLogs/GetXmlLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@
$flag = 0;
$str_unitSVC = "";
$service_search_sql = "";
if (count($tab_svc) > 0 && ($ok == 'true' || $warning == 'true' || $critical == 'true' || $unknown == 'true')) {
if (count($tab_svc) > 0 && ($up == 'true' || $down == 'true' || $unreachable == 'true' || $ok == 'true' || $warning == 'true' || $critical == 'true' || $unknown == 'true')) {
$req_append = "";
foreach ($tab_svc as $host_name => $services) {
$str = "";
Expand Down

0 comments on commit 3f49c25

Please sign in to comment.