summaryrefslogtreecommitdiffstats
path: root/frontends/php/include
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-08-29 04:24:45 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-08-29 04:24:45 +0000
commitc79f8f2fa32a24fb2d5ae2b2e5e8cbad8b3fdf82 (patch)
tree0933b84b72e82503e92afba4628a153d40049e36 /frontends/php/include
parentd6979e8ed003b82e31e7bd7402efa5264b4a8430 (diff)
downloadzabbix-c79f8f2fa32a24fb2d5ae2b2e5e8cbad8b3fdf82.tar.gz
zabbix-c79f8f2fa32a24fb2d5ae2b2e5e8cbad8b3fdf82.tar.xz
zabbix-c79f8f2fa32a24fb2d5ae2b2e5e8cbad8b3fdf82.zip
Changes in forms.
git-svn-id: svn://svn.zabbix.com/trunk@471 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include')
-rw-r--r--frontends/php/include/config.inc.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php
index a1cc9637..bf6b651a 100644
--- a/frontends/php/include/config.inc.php
+++ b/frontends/php/include/config.inc.php
@@ -2965,6 +2965,8 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid";
function insert_login_form()
{
+ global $HTTP_GET_VARS;
+
show_table2_header_begin();
echo "Login";
@@ -2973,12 +2975,14 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid";
echo "Login name";
show_table2_h_delimiter();
- echo "<input name=\"name\" value=\"$name\" size=20>";
+// echo "<input name=\"name\" value=\"".$HTTP_GET_VARS["name"]."\" size=20>";
+ echo "<input name=\"name\" value=\"\" size=20>";
show_table2_v_delimiter();
echo "Password";
show_table2_h_delimiter();
- echo "<input type=\"password\" name=\"password\" value=\"$password\" size=20>";
+// echo "<input type=\"password\" name=\"password\" value=\"$password\" size=20>";
+ echo "<input type=\"password\" name=\"password\" value=\"\" size=20>";
show_table2_v_delimiter2();
echo "<input type=\"submit\" name=\"register\" value=\"Enter\">";