diff options
author | ivan <ivan> | 2010-06-30 20:42:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-06-30 20:42:54 +0000 |
commit | fd93bd0bf90836be82c5271bb36e46cca83735f4 (patch) | |
tree | 411aeac519f354cb98e675f375df88ff26ca3a04 /httemplate/config/config-process.cgi | |
parent | b495de6efd8206f6e4ee1ce18a6a0b027484d5d0 (diff) |
cust_main exports! cust_main-exports config option and part_export/cust_http.pm export, RT#8952
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 c2b11b8fc..4e1c85a03 100644 --- a/httemplate/config/config-process.cgi +++ b/httemplate/config/config-process.cgi @@ -73,7 +73,7 @@ % my $record = qsearchs($table, { $pkey => $key }); % my $value = $record ? "$key: ".$record->$namecol() : $key; configCell.innerHTML = <% $value |js_string %>; -% } elsif ( $type eq 'select-sub' ) { +% } elsif ( $type eq 'select-sub' && ! $i->multiple ) { configCell.innerHTML = <% $conf->config($i->key, $agentnum) |js_string %> + ': ' + <% &{ $i->option_sub }( $conf->config($i->key, $agentnum) ) |js_string %>; |