summaryrefslogtreecommitdiffstats
path: root/frontends/php/include
diff options
context:
space:
mode:
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\">";