From 557f7ddabb5bf38e5b4a6be7a372b47a4ee643bd Mon Sep 17 00:00:00 2001 From: hugetoad Date: Wed, 8 Dec 2004 11:43:37 +0000 Subject: - removed column items.lastdelete (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1528 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontends/php/items.php') diff --git a/frontends/php/items.php b/frontends/php/items.php index 721217ec..1ef9ff54 100644 --- a/frontends/php/items.php +++ b/frontends/php/items.php @@ -207,7 +207,7 @@ 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)); echo "
"; 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"); + $result=DBselect("select h.host,i.key_,i.itemid,i.description,h.port,i.delay,i.history,i.lastvalue,i.lastclock,i.status,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)) { -- cgit