From 36020ffc5c826952f88b4adb4cf62f5d77c752cd Mon Sep 17 00:00:00 2001 From: hugetoad Date: Sun, 5 Jan 2003 19:28:10 +0000 Subject: - different colors for different status of items, triggers, users (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@627 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/hosts.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'frontends/php/hosts.php') diff --git a/frontends/php/hosts.php b/frontends/php/hosts.php index f2364a67..1d8dbedb 100644 --- a/frontends/php/hosts.php +++ b/frontends/php/hosts.php @@ -78,26 +78,26 @@ if(check_right("Host","U",$row["hostid"])) { if($row["status"] == 0) - echo "Monitored"; + echo "Monitored"; else if($row["status"] == 1) - echo "Not monitored"; + echo "Not monitored"; else if($row["status"] == 2) - echo "Unreachable"; + echo "Unreachable"; else if($row["status"] == 3) - echo "Template"; + echo "Template"; else echo "Unknown"; } else { if($row["status"] == 0) - echo "Monitored"; + echo "Monitored"; else if($row["status"] == 1) - echo "Not monitored"; + echo "Not monitored"; else if($row["status"] == 2) - echo "Unreachable"; + echo "Unreachable"; else if($row["status"] == 3) - echo "Template"; + echo "Template"; else echo "Unknown"; } -- cgit