summaryrefslogtreecommitdiffstats
path: root/frontends/php/hosts.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-05-25 07:40:51 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-05-25 07:40:51 +0000
commit231faf1162a0aac6feb4e30b18da7bd14bb8de11 (patch)
tree5c9266d54cb8b65d5014629871ff730547268bdb /frontends/php/hosts.php
parentd3efc4c51bb20d6122b9b45964017a9d1eae7c3a (diff)
- added support for real delta. item.delta=2. (Alexei)
- new selection for triggers.php (Alexei) - new selection for items.php (Alexei) - removed helpdesk.php (Alexei) - fixed check of permissions for screenedit.php (Alexei) - new selection for graphs in charts.php (Alexei) - new selection of maps in maps.php (Alexei) - new selection of group and host for latest.php (Alexei) - added support for macro {IPADDRESS} (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1348 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/hosts.php')
-rw-r--r--frontends/php/hosts.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/frontends/php/hosts.php b/frontends/php/hosts.php
index b51f634e..404418ef 100644
--- a/frontends/php/hosts.php
+++ b/frontends/php/hosts.php
@@ -20,6 +20,7 @@
?>
<?php
include "include/config.inc.php";
+ include "include/forms.inc.php";
$page["title"] = S_HOSTS;
$page["file"] = "hosts.php";
show_header($page["title"],0,0);
@@ -131,7 +132,7 @@
if(DBnum_rows($result)==0)
{
echo "<TR BGCOLOR=#EEEEEE>";
- echo "<TD COLSPAN=3 ALIGN=CENTER>".S_NO_HOST_GROUPS_DEFINED."</TD>";
+ echo "<TD COLSPAN=4 ALIGN=CENTER>".S_NO_HOST_GROUPS_DEFINED."</TD>";
echo "<TR>";
}
echo "</TABLE>";
@@ -146,11 +147,11 @@
if(isset($HTTP_GET_VARS["groupid"]))
{
// echo "all ";
- echo "<a href='hosts.php'>".S_ALL."</a> ";
+ echo "<a href='hosts.php'>".S_ALL_SMALL."</a> ";
}
else
{
- echo "<b>[<a href='hosts.php'>".S_ALL."</a>]</b> ";
+ echo "<b>[<a href='hosts.php'>".S_ALL_SMALL."</a>]</b> ";
}
$result=DBselect("select groupid,name from groups order by name");
@@ -281,7 +282,7 @@
if(DBnum_rows($result)==0)
{
echo "<TR BGCOLOR=#EEEEEE>";
- echo "<TD COLSPAN=5 ALIGN=CENTER>".S_NO_HOSTS_DEFINED."</TD>";
+ echo "<TD COLSPAN=6 ALIGN=CENTER>".S_NO_HOSTS_DEFINED."</TD>";
echo "<TR>";
}
echo "</TABLE>";