summaryrefslogtreecommitdiffstats
path: root/frontends/php/sysmap.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-11 14:38:49 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-11 14:38:49 +0000
commite87f5ebd4db58b76543980eb24a4efe044003e59 (patch)
tree04c5bfc3f208d4c9d7a137ff356035ca08cb7014 /frontends/php/sysmap.php
parentb4b26e48b09f36c8b533412a1b19f1f23a447a9b (diff)
downloadzabbix-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/sysmap.php')
-rw-r--r--frontends/php/sysmap.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/sysmap.php b/frontends/php/sysmap.php
index 27f9dad6..bb2b4eed 100644
--- a/frontends/php/sysmap.php
+++ b/frontends/php/sysmap.php
@@ -115,7 +115,7 @@
echo "</TABLE>";
show_table_header("DISPLAYED HOSTS");
- $table = new Ctable();
+ $table = new CTableInfo();
$table->setHeader(array(S_HOST,S_LABEL,S_X,S_Y,S_ICON,S_ACTIONS));
$result=DBselect("select h.host,sh.shostid,sh.sysmapid,sh.hostid,sh.label,sh.x,sh.y,sh.icon from sysmaps_hosts sh,hosts h where sh.sysmapid=".$_REQUEST["sysmapid"]." and h.status not in (".HOST_STATUS_DELETED.") and h.hostid=sh.hostid order by h.host");
@@ -135,7 +135,7 @@
<?php
show_table_header("CONNECTORS");
- $table = new Ctable();
+ $table = new CTableInfo();
$table->setHeader(array(S_HOST_1,S_HOST_2,S_LINK_STATUS_INDICATOR,S_ACTIONS));
$result=DBselect("select linkid,shostid1,shostid2,triggerid from sysmaps_links where sysmapid=".$_REQUEST["sysmapid"]." order by linkid");