diff options
author | ivan <ivan> | 2008-03-31 21:43:39 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-03-31 21:43:39 +0000 |
commit | bf59eef2c56025c005c17afd73fc8b23ea68d7ec (patch) | |
tree | 90fddd3875cc465a6446d6f993e1c8bafd4ac75a /httemplate | |
parent | 41ab1bbaf58292688e1e84ab153059896f17a5d4 (diff) |
more approprietly sized textareas prevent scrollbars from being necessary in config popups
Diffstat (limited to 'httemplate')
-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 d58c2f89b..9223167c5 100644 --- a/httemplate/config/config.cgi +++ b/httemplate/config/config.cgi @@ -50,7 +50,7 @@ Setting <b><% $key %></b> % } elsif ( $type eq 'textarea' ) { - <textarea name="<% "$key$n" %>" rows=18 cols=88 wrap="off"><% join("\n", $conf->config($key, $agentnum)) %></textarea> + <textarea name="<% "$key$n" %>" rows=12 cols=88 wrap="off"><% join("\n", $conf->config($key, $agentnum)) %></textarea> % } elsif ( $type eq 'checkbox' ) { |