diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-01-11 14:38:49 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-01-11 14:38:49 +0000 |
| commit | e87f5ebd4db58b76543980eb24a4efe044003e59 (patch) | |
| tree | 04c5bfc3f208d4c9d7a137ff356035ca08cb7014 /frontends/php/hosts.php | |
| parent | b4b26e48b09f36c8b533412a1b19f1f23a447a9b (diff) | |
| download | zabbix-e87f5ebd4db58b76543980eb24a4efe044003e59.tar.gz zabbix-e87f5ebd4db58b76543980eb24a4efe044003e59.tar.xz zabbix-e87f5ebd4db58b76543980eb24a4efe044003e59.zip | |
Frontend improvements.
git-svn-id: svn://svn.zabbix.com/trunk@2515 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/hosts.php')
| -rw-r--r-- | frontends/php/hosts.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/hosts.php b/frontends/php/hosts.php index 3c10cdc3..2b5e506d 100644 --- a/frontends/php/hosts.php +++ b/frontends/php/hosts.php @@ -368,7 +368,7 @@ { echo "<br>"; show_table_header(S_HOST_GROUPS_BIG); - $table = new Ctable(S_NO_HOST_GROUPS_DEFINED); + $table = new CTableInfo(S_NO_HOST_GROUPS_DEFINED); $table->setHeader(array(S_ID,S_NAME,S_MEMBERS,S_ACTIONS)); $result=DBselect("select groupid,name from groups order by name"); @@ -413,7 +413,7 @@ <?php if(isset($_REQUEST["hostid"])&&($_REQUEST["config"]==2)) { - $table = new Ctable(S_NO_LINKAGES_DEFINED); + $table = new CTableInfo(S_NO_LINKAGES_DEFINED); $table->setHeader(array(S_HOST,S_TEMPLATE,S_ITEMS,S_TRIGGERS,S_GRAPHS,S_ACTIONS)); $result=DBselect("select * from hosts_templates where hostid=".$_REQUEST["hostid"]); @@ -482,7 +482,7 @@ ?> <?php - $table = new Ctable(S_NO_HOSTS_DEFINED); + $table = new CTableInfo(S_NO_HOSTS_DEFINED); $table->setHeader(array(S_ID,S_HOST,S_IP,S_PORT,S_STATUS,S_AVAILABILITY,S_ERROR,S_ACTIONS)); $table->setAfterHeader("<form method=\"get\" action=\"hosts.php\">"); |
