summaryrefslogtreecommitdiffstats
path: root/frontends/php/items.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-12-08 11:43:37 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-12-08 11:43:37 +0000
commit557f7ddabb5bf38e5b4a6be7a372b47a4ee643bd (patch)
tree01d3531c76e48988a16067fc1fa4ea1a22b5675c /frontends/php/items.php
parent253846561a7651b0b3d0b66e3588844077cff45c (diff)
downloadzabbix-557f7ddabb5bf38e5b4a6be7a372b47a4ee643bd.tar.gz
zabbix-557f7ddabb5bf38e5b4a6be7a372b47a4ee643bd.tar.xz
zabbix-557f7ddabb5bf38e5b4a6be7a372b47a4ee643bd.zip
- removed column items.lastdelete (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@1528 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/items.php')
-rw-r--r--frontends/php/items.php2
1 files changed, 1 insertions, 1 deletions
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 "<form method=\"get\" action=\"items.php\">";
echo "<input class=\"biginput\" name=\"hostid\" type=hidden value=".$_GET["hostid"]." size=8>";
- $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))
{