summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/graphs.inc.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-11-26 18:13:11 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-11-26 18:13:11 +0000
commit4f9f8c8e8746ed085d081978a01d38f446c2cdb7 (patch)
tree9391b1250bbd1dedf430a2e2eebba411a633041c /frontends/php/include/graphs.inc.php
parentf34eb9596b1831eff096a3518097a1edb18ccff0 (diff)
downloadzabbix-4f9f8c8e8746ed085d081978a01d38f446c2cdb7.tar.gz
zabbix-4f9f8c8e8746ed085d081978a01d38f446c2cdb7.tar.xz
zabbix-4f9f8c8e8746ed085d081978a01d38f446c2cdb7.zip
Minor fixes.
git-svn-id: svn://svn.zabbix.com/trunk@2370 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/graphs.inc.php')
-rw-r--r--frontends/php/include/graphs.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/include/graphs.inc.php b/frontends/php/include/graphs.inc.php
index 14ea38cb..e24e483e 100644
--- a/frontends/php/include/graphs.inc.php
+++ b/frontends/php/include/graphs.inc.php
@@ -42,7 +42,7 @@
function add_item_to_graph($graphid,$itemid,$color,$drawtype,$sortorder,$yaxisside)
{
- $sql="insert into graphs_items (graphid,itemid,color,drawtype,sortorder) values ($graphid,$itemid,'$color',$drawtype,$sortorder,$yaxisside)";
+ $sql="insert into graphs_items (graphid,itemid,color,drawtype,sortorder,yaxisside) values ($graphid,$itemid,'$color',$drawtype,$sortorder,$yaxisside)";
$result=DBexecute($sql);
return DBinsert_id($result,"graphs_items","gitemid");
}