From 99334a88dbac754adc43e82dbfe1027b28c4d9de Mon Sep 17 00:00:00 2001 From: hugetoad Date: Mon, 30 Jan 2006 09:36:15 +0000 Subject: Directory for experimental code. git-svn-id: svn://svn.zabbix.com/trunk@2571 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/sysmaps.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'frontends/php/sysmaps.php') 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"); } -- cgit