summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/params/common.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/admin/params/common.html.tmpl')
-rw-r--r--template/en/default/admin/params/common.html.tmpl5
1 files changed, 4 insertions, 1 deletions
diff --git a/template/en/default/admin/params/common.html.tmpl b/template/en/default/admin/params/common.html.tmpl
index 7502c909d..4fd792194 100644
--- a/template/en/default/admin/params/common.html.tmpl
+++ b/template/en/default/admin/params/common.html.tmpl
@@ -30,8 +30,11 @@
<dd>[% panel.param_descs.${param.name} FILTER none %]
<p>
[% IF param.type == "t" %]
- <input size="80" name="[% param.name FILTER html %]"
+ <input type="text" size="80" name="[% param.name FILTER html %]"
value="[% Param(param.name) FILTER html %]">
+ [% ELSIF param.type == "p" %]
+ <input type="password" size="80" name="[% param.name FILTER html %]"
+ value="[% Param(param.name) FILTER html %]" autocomplete="off">
[% ELSIF param.type == "l" %]
<textarea name="[% param.name FILTER html %]" rows="10" cols="80">
[% Param(param.name) FILTER html %]</textarea>