summaryrefslogtreecommitdiffstats
path: root/frontends/php/sysmaps.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-30 09:36:15 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-30 09:36:15 +0000
commit99334a88dbac754adc43e82dbfe1027b28c4d9de (patch)
tree245ccb39ec1fa3a3bb89c2b0c7d86cc6385fd62c /frontends/php/sysmaps.php
parent7381fe01586930e98fc51b85c6778dc9bf4ed142 (diff)
downloadzabbix-99334a88dbac754adc43e82dbfe1027b28c4d9de.tar.gz
zabbix-99334a88dbac754adc43e82dbfe1027b28c4d9de.tar.xz
zabbix-99334a88dbac754adc43e82dbfe1027b28c4d9de.zip
Directory for experimental code.
git-svn-id: svn://svn.zabbix.com/trunk@2571 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/sysmaps.php')
-rw-r--r--frontends/php/sysmaps.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontends/php/sysmaps.php b/frontends/php/sysmaps.php
index 0b90ab72..d70ab056 100644
--- a/frontends/php/sysmaps.php
+++ b/frontends/php/sysmaps.php
@@ -43,12 +43,13 @@
if(isset($_REQUEST["sysmapid"]))
{
$result=update_sysmap($_REQUEST["sysmapid"],$_REQUEST["name"],$_REQUEST["width"],
- $_REQUEST["height"],$_REQUEST["background"],$_REQUEST["label_type"]);
+ $_REQUEST["height"],$_REQUEST["background"],$_REQUEST["label_type"],
+ $_REQUEST["label_location"]);
show_messages($result,"Network map updated","Cannot update network map");
} else {
$result=add_sysmap($_REQUEST["name"],$_REQUEST["width"],$_REQUEST["height"],
- $_REQUEST["background"],$_REQUEST["label_type"]);
+ $_REQUEST["background"],$_REQUEST["label_type"],$_REQUEST["label_location"]);
show_messages($result,"Network map added","Cannot add network map");
}