From 7ce63d5fa0fa7b06e7bb125cceb2521d83a6ad83 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Sat, 20 Nov 2004 17:08:41 +0000 Subject: Cosmetic changes. git-svn-id: svn://svn.zabbix.com/trunk@1498 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/items.php | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'frontends/php/items.php') diff --git a/frontends/php/items.php b/frontends/php/items.php index 40dcdcaa..b2d57993 100644 --- a/frontends/php/items.php +++ b/frontends/php/items.php @@ -201,9 +201,12 @@ "; + echo ""; $result=DBselect("select h.host,i.key_,i.itemid,i.description,h.port,i.delay,i.history,i.lastvalue,i.lastclock,i.status,i.lastdelete,i.nextcheck,h.hostid,i.type,i.trends from hosts h,items i where h.hostid=i.hostid and h.hostid=".$_GET["hostid"]." order by h.host,i.key_,i.description"); $col=0; while($row=DBfetch($result)) @@ -212,18 +215,6 @@ { continue; } - if($lasthost != $row["host"]) - { - if($lasthost != "") - { - echo "
"; - } - echo "
"; - echo ""; - table_begin(); - table_header(array(S_ID,S_KEY,S_DESCRIPTION,nbsp(S_UPDATE_INTERVAL),S_HISTORY,S_TRENDS,S_SHORT_NAME,S_TYPE,S_STATUS,S_ACTIONS)); - } - $lasthost=$row["host"]; $input=" ".$row["itemid"]; -- cgit