diff options
author | ivan <ivan> | 2002-04-07 00:00:41 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-04-07 00:00:41 +0000 |
commit | fca110eff969104793774ed717985e91c53f5318 (patch) | |
tree | 310d308115a9c1a8e1126d047f1f5d7820f4797e /httemplate/config/config-process.cgi | |
parent | 99a8652052e5b036e7db08c32603c0feadc60e85 (diff) |
- config option for signup server payment types
- credit card type pulldown on signup server (closes: Bug#383)
Diffstat (limited to 'httemplate/config/config-process.cgi')
-rw-r--r-- | httemplate/config/config-process.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/config/config-process.cgi b/httemplate/config/config-process.cgi index 38d9af0db..259713260 100644 --- a/httemplate/config/config-process.cgi +++ b/httemplate/config/config-process.cgi @@ -34,7 +34,7 @@ } } elsif ( $type eq 'editlist' || $type eq 'selectmultiple' ) { if ( scalar(@{[ $cgi->param($i->key. $n) ]}) ) { - $conf->set($i->key, join("\n", $cgi->param($i->key. $n) )); + $conf->set($i->key, join("\n", @{[ $cgi->param($i->key. $n) ]} )); } else { $conf->delete($i->key); } |