summaryrefslogtreecommitdiff
path: root/lib/VNDB/ExtLinks.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/VNDB/ExtLinks.pm')
-rw-r--r--lib/VNDB/ExtLinks.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/ExtLinks.pm b/lib/VNDB/ExtLinks.pm
index 202afe3e..ffca7a7b 100644
--- a/lib/VNDB/ExtLinks.pm
+++ b/lib/VNDB/ExtLinks.pm
@@ -204,7 +204,7 @@ sub sql_extlinks {
my($type, $prefix) = @_;
$prefix ||= '';
my $l = $LINKS{$type} || die "DB entry type $type has no links";
- VNWeb::DB::sql_comma(map $prefix.$_, sort keys %$l)
+ join ',', map $prefix.$_, sort keys %$l
}