summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2008-10-19 01:57:42 +0000
committerivan <ivan>2008-10-19 01:57:42 +0000
commitbeab5e8857fa4961c22c7ccc49c9fea333c593a7 (patch)
treecc405fcfa324a05a24d6c1da2281deac669e819c /httemplate
parent51d044c74ff531b744a6b570fe4a178654a0e7da (diff)
correctly allow re-editing of config options with " in them
Diffstat (limited to 'httemplate')
-rw-r--r--httemplate/config/config.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/config/config.cgi b/httemplate/config/config.cgi
index 9223167..5e73b59 100644
--- a/httemplate/config/config.cgi
+++ b/httemplate/config/config.cgi
@@ -59,7 +59,7 @@ Setting <b><% $key %></b>
% } elsif ( $type eq 'text' ) {
- <input name="<% "$key$n" %>" type="text" value="<% $conf->exists($key, $agentnum) ? $conf->config($key, $agentnum) : '' %>">
+ <input name="<% "$key$n" %>" type="text" value="<% $conf->exists($key, $agentnum) ? $conf->config($key, $agentnum) : '' |h %>">
% } elsif ( $type eq 'select' || $type eq 'selectmultiple' ) {