summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2006-08-18 10:27:46 +0000
committerivan <ivan>2006-08-18 10:27:46 +0000
commit78b0e4c62ec84a5e4082ee3d73f9825e498d3462 (patch)
tree3add572ecd5c0733d0649af9944a12bd2d2c48e4
parenta131a3f3f8872ba175d4e213aac25624616e3b7d (diff)
that was it, the sql had to be fixed...
-rw-r--r--FS/FS/cust_main.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index b7545dee7..94564dc80 100644
--- a/FS/FS/cust_main.pm
+++ b/FS/FS/cust_main.pm
@@ -526,7 +526,7 @@ sub _copy_skel {
my @sel_columns = grep { $_ ne $primary_key }
dbdef->table($child_table)->columns;
- my $sel_columns = ' ( '. join(', ', @sel_columns ). ' ) ';
+ my $sel_columns = join(', ', @sel_columns );
my @ins_columns = grep { $_ ne $child_pkey } @sel_columns;
my $ins_columns = ' ( '. join(', ', $primary_key, @ins_columns ). ' ) ';