summaryrefslogtreecommitdiffstats
path: root/frontends/php/items.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-01-23 14:55:32 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-01-23 14:55:32 +0000
commite5259a33066415ea2d424afeb54cad5d4c2b1ad9 (patch)
treeaf3cc24fe287671eb29574baf79999d11f4154b4 /frontends/php/items.php
parent0dcb4e9f403253a308b088c145e7404c28de2008 (diff)
downloadzabbix-e5259a33066415ea2d424afeb54cad5d4c2b1ad9.tar.gz
zabbix-e5259a33066415ea2d424afeb54cad5d4c2b1ad9.tar.xz
zabbix-e5259a33066415ea2d424afeb54cad5d4c2b1ad9.zip
- improved webmonitoring (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@3749 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/items.php')
-rw-r--r--frontends/php/items.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/items.php b/frontends/php/items.php
index cad1886a..4297b801 100644
--- a/frontends/php/items.php
+++ b/frontends/php/items.php
@@ -53,7 +53,7 @@ include_once "include/page_header.php";
"delay_flex"=> array(T_ZBX_STR, O_OPT, NULL, "",NULL),
"history"=> array(T_ZBX_INT, O_OPT, NULL, BETWEEN(0,65535),'isset({save})'),
"status"=> array(T_ZBX_INT, O_OPT, NULL, BETWEEN(0,65535),'isset({save})'),
- "type"=> array(T_ZBX_INT, O_OPT, NULL, IN("0,1,2,3,4,5,6,7,8"),'isset({save})'),
+ "type"=> array(T_ZBX_INT, O_OPT, NULL, IN("0,1,2,3,4,5,6,7,8,9"),'isset({save})'),
"trends"=> array(T_ZBX_INT, O_OPT, NULL, BETWEEN(0,65535),'isset({save})'),
"value_type"=> array(T_ZBX_INT, O_OPT, NULL, IN("0,1,2,3,4"),'isset({save})'),
"valuemapid"=> array(T_ZBX_INT, O_OPT, NULL, DB_ID,'isset({save})'),
@@ -97,7 +97,7 @@ include_once "include/page_header.php";
"form_refresh"=> array(T_ZBX_INT, O_OPT, NULL, NULL, NULL)
);
- $_REQUEST["showdisabled"] = get_request("showdisabled", get_profile("web.latest.showdisabled", 0));
+ $_REQUEST["showdisabled"] = get_request("showdisabled", get_profile("web.items.showdisabled", 0));
check_fields($fields);
@@ -111,7 +111,7 @@ include_once "include/page_header.php";
}
validate_group_with_host(PERM_READ_WRITE,array("always_select_first_host","only_current_node"));
- update_profile("web.latest.showdisabled",$showdisabled);
+ update_profile("web.items.showdisabled",$showdisabled);
?>
<?php
$result = 0;