diff options
| author | sasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-02-29 12:18:32 +0000 |
|---|---|---|
| committer | sasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-02-29 12:18:32 +0000 |
| commit | b671b3eec264380ebd9af00f95591ab79a72870c (patch) | |
| tree | f98dc8a16f3bfd603207017b9a25cfb5532b1966 /frontends/php/include/forms.inc.php | |
| parent | 956f26cec0008d6ca8dd95cc7b90c8b018fc2dcc (diff) | |
| download | zabbix-b671b3eec264380ebd9af00f95591ab79a72870c.tar.gz zabbix-b671b3eec264380ebd9af00f95591ab79a72870c.tar.xz zabbix-b671b3eec264380ebd9af00f95591ab79a72870c.zip | |
- [DEV-108] Proxy configuration GUI
git-svn-id: svn://svn.zabbix.com/trunk@5419 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/forms.inc.php')
| -rw-r--r-- | frontends/php/include/forms.inc.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php index e65f18d8..af3b2c74 100644 --- a/frontends/php/include/forms.inc.php +++ b/frontends/php/include/forms.inc.php @@ -4194,12 +4194,12 @@ include_once 'include/discovery.inc.php'; $newgroup = get_request("newgroup",""); $host = get_request("host", ""); - $proxyid= get_request("proxyis",""); $port = get_request("port", get_profile("HOST_PORT",10050)); $status = get_request("status", HOST_STATUS_MONITORED); $useip = get_request("useip", 0); $dns = get_request("dns", ""); $ip = get_request("ip", "0.0.0.0"); + $proxyid= get_request("proxyid",""); $useprofile = get_request("useprofile","no"); @@ -4234,13 +4234,13 @@ include_once 'include/discovery.inc.php'; if(isset($_REQUEST["hostid"]) && !isset($_REQUEST["form_refresh"])) { - - $host = $db_host["host"]; - $port = $db_host["port"]; - $status = $db_host["status"]; - $useip = $db_host["useip"]; - $dns = $db_host["dns"]; - $ip = $db_host["ip"]; + $proxyid = $db_host["proxyid"]; + $host = $db_host["host"]; + $port = $db_host["port"]; + $status = $db_host["status"]; + $useip = $db_host["useip"]; + $dns = $db_host["dns"]; + $ip = $db_host["ip"]; // add groups $db_groups=DBselect("SELECT distinct groupid FROM hosts_groups WHERE hostid=".$_REQUEST["hostid"]. |
