diff options
author | levinse <levinse> | 2011-07-01 06:54:03 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-07-01 06:54:03 +0000 |
commit | 4665d5af02f915679207a369222472a25e137c9d (patch) | |
tree | a86cb48ebf58eca185e4200ae5a89dc340e32429 /httemplate/config | |
parent | 4b80fe118da16b21603fcdbd090bc03d8fbf0578 (diff) |
RADIUS group enhancements, overlimit_groups changes, etc. RT13432
Diffstat (limited to 'httemplate/config')
-rw-r--r-- | httemplate/config/config-view.cgi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 4c90ebb8d..e7cadbe99 100644 --- a/httemplate/config/config-view.cgi +++ b/httemplate/config/config-view.cgi @@ -207,8 +207,16 @@ Click on a configuration value to change it. <tr> <td id="<% $agentnum.$i->key.$n %>" bgcolor="#ffffff"> +% if ( $i->multiple ) { + <% join('<BR>', + map { $_ . ": " . &{ $i->option_sub }($_) } + $conf->config($i->key,$agentnum) + ) + %> +% } else { <% $conf->config($i->key, $agentnum) %>: <% &{ $i->option_sub }( $conf->config($i->key, $agentnum) ) %> +% } </td> </tr> |