Fix status page of gateways to show gateways with monitoring disabled as up.

This commit is contained in:
Ermal 2011-07-28 20:35:08 +00:00
parent 33c06ef791
commit db07cc25af

View File

@ -109,6 +109,9 @@ include("head.inc");
$online = gettext("Online");
$bgcolor = "lightgreen";
}
} else if (isset($gateway['monitor_disable'])) {
$online = gettext("Online");
$bgcolor = "lightgreen";
} else {
$online = gettext("Gathering data");
$bgcolor = "lightgray";