summaryrefslogtreecommitdiffstats
path: root/frontends/php/report2.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/report2.php')
-rw-r--r--frontends/php/report2.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/frontends/php/report2.php b/frontends/php/report2.php
index 5a785633..2a298568 100644
--- a/frontends/php/report2.php
+++ b/frontends/php/report2.php
@@ -45,6 +45,7 @@
echo "<TD><B>Expression</B></TD>";
echo "<TD WIDTH=\"5%\"><B>True (%)</B></TD>";
echo "<TD WIDTH=\"5%\"><B>False (%)</B></TD>";
+ echo "<TD WIDTH=\"5%\"><B>Unknown (%)</B></TD>";
echo "</TR>\n";
}
$lasthost=$row["host"];
@@ -63,6 +64,9 @@
echo "<TD>";
printf("%.4f%%",$availability["false"]);
echo "</TD>";
+ echo "<TD>";
+ printf("%.4f%%",$availability["unknown"]);
+ echo "</TD>";
echo "</TR>\n";
}
echo "</table>\n";