summaryrefslogtreecommitdiffstats
path: root/frontends/php/include
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2003-08-15 17:38:49 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2003-08-15 17:38:49 +0000
commitbb1a8e2a9a50d9566d818aa8b8a5fb7b0433c774 (patch)
tree10b2584cc63c8d38b7f449657682e8a027aa8dcb /frontends/php/include
parentd37bdace60f6acc8326cdb16b5ecaeb5c00a4b1b (diff)
downloadzabbix-bb1a8e2a9a50d9566d818aa8b8a5fb7b0433c774.tar.gz
zabbix-bb1a8e2a9a50d9566d818aa8b8a5fb7b0433c774.tar.xz
zabbix-bb1a8e2a9a50d9566d818aa8b8a5fb7b0433c774.zip
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@922 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include')
-rw-r--r--frontends/php/include/config.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php
index 3e018b4d..d3e62765 100644
--- a/frontends/php/include/config.inc.php
+++ b/frontends/php/include/config.inc.php
@@ -4326,9 +4326,9 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid";
return DBexecute($sql);
}
- function update_screen_item($screenitemid,$graphid,$width,$height)
+ function update_screen_item($screenitemid,$resource,$resourceid,$width,$height)
{
- $sql="update screens_items set graphid=$graphid,width=$width,height=$height where screenitemid=$screenitemid";
+ $sql="update screens_items set resource=$resourceid,resourceid=$resourceid,width=$width,height=$height where screenitemid=$screenitemid";
return DBexecute($sql);
}