summaryrefslogtreecommitdiff
path: root/FS/FS/cdr/Import.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/cdr/Import.pm')
-rw-r--r--FS/FS/cdr/Import.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cdr/Import.pm b/FS/FS/cdr/Import.pm
index 472e22062..e788712c4 100644
--- a/FS/FS/cdr/Import.pm
+++ b/FS/FS/cdr/Import.pm
@@ -83,7 +83,7 @@ sub dbi_import {
#my @cols = values %{ $args{column_map} };
my $sql = "SELECT * FROM $table "; # join(',', @cols). " FROM $table ".
$sql .= 'LEFT JOIN '. $args{status_table}.
- ' USING ( '. $args{primary_key}. ' )'
+ " ON ( $table.$pkey = ". $args{status_table}. ".$pkey )"
if $args{status_table};
$sql .= ' WHERE freesidestatus IS NULL ';