summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-04-29 16:09:17 -0700
committerMark Wells <mark@freeside.biz>2013-04-29 16:10:14 -0700
commitd94f2b5d906b966be17025b9f6bddaca7511a9bb (patch)
tree8bc225739d34c413d0d6af6acd76b7297070cb26 /FS
parent22336a0eeba10b4d1a4a78801f83f7cef56a1a20 (diff)
quote params correctly for HLR SIM export, #21514,
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/part_export/huawei_hlr.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_export/huawei_hlr.pm b/FS/FS/part_export/huawei_hlr.pm
index 007981880..41cbbfb58 100644
--- a/FS/FS/part_export/huawei_hlr.pm
+++ b/FS/FS/part_export/huawei_hlr.pm
@@ -314,8 +314,8 @@ sub import_sim {
# push IMSI/KI to the HLR
my $return = $self->command($socket,
@command,
- 'IMSI', $imsi,
- 'KIVALUE', $ki,
+ 'IMSI', qq{"$imsi"},
+ 'KIVALUE', qq{"$ki"},
@args
);
if ( $return->{success} ) {