diff options
author | ivan <ivan> | 2008-10-19 01:57:42 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-10-19 01:57:42 +0000 |
commit | beab5e8857fa4961c22c7ccc49c9fea333c593a7 (patch) | |
tree | cc405fcfa324a05a24d6c1da2281deac669e819c /httemplate/config | |
parent | 51d044c74ff531b744a6b570fe4a178654a0e7da (diff) |
correctly allow re-editing of config options with " in them
Diffstat (limited to 'httemplate/config')
-rw-r--r-- | httemplate/config/config.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/config/config.cgi b/httemplate/config/config.cgi index 9223167c5..5e73b59e1 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' ) { |