From beab5e8857fa4961c22c7ccc49c9fea333c593a7 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 19 Oct 2008 01:57:42 +0000 Subject: [PATCH] correctly allow re-editing of config options with " in them --- httemplate/config/config.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 <% $key %> % } elsif ( $type eq 'text' ) { - " type="text" value="<% $conf->exists($key, $agentnum) ? $conf->config($key, $agentnum) : '' %>"> + " type="text" value="<% $conf->exists($key, $agentnum) ? $conf->config($key, $agentnum) : '' |h %>"> % } elsif ( $type eq 'select' || $type eq 'selectmultiple' ) { -- 2.11.0