diff options
author | ivan <ivan> | 2009-09-25 12:29:16 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-09-25 12:29:16 +0000 |
commit | 8800e519dc0e4b8eee4ab2cddc74d52c205bc536 (patch) | |
tree | 63cc8c893b7e8a8b2d5b3ef3ffd6fc1e6a6ec590 /httemplate/config/config-view.cgi | |
parent | 5f0e4d1d57c18d5bb8a52de4f7d4f519db5327f0 (diff) |
processing fee on credit card recharges, RT#5889
Diffstat (limited to 'httemplate/config/config-view.cgi')
-rw-r--r-- | httemplate/config/config-view.cgi | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 80a65d09b..51535d762 100644 --- a/httemplate/config/config-view.cgi +++ b/httemplate/config/config-view.cgi @@ -48,7 +48,8 @@ Click on a configuration value to change it. </tr> % foreach my $i (@{ $section_items{$section} }) { % my @types = ref($i->type) ? @{$i->type} : ($i->type); -% my( $width, $height ) = ( 522, 336 ); +%# my( $width, $height ) = ( 522, 336 ); +% my( $width, $height ) = ( 600, 336 ); % if ( grep $_ eq 'textarea', @types ) { % #800x600 % $width = 763; @@ -208,14 +209,14 @@ Click on a configuration value to change it. </td> </tr> -% } elsif ( $type eq 'select-part_svc' ) { -% my @svcparts = $conf->config($i->key, $agentnum); +% } elsif ( $type =~ /^select-(part_svc|part_pkg)$/ ) { +% my @keys = $conf->config($i->key, $agentnum); <tr> <td id="<% $agentnum.$i->key.$n %>" bgcolor="#ffffff"> - <% join('<BR>', map { $_ # ': '. $svc + <% join('<BR>', map { $_ # ': '. $svc, $pkg, whatever } - @svcparts + @keys ) %> </td> |