diff options
author | Mark Wells <mark@freeside.biz> | 2013-04-29 16:09:17 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-04-29 16:10:14 -0700 |
commit | d94f2b5d906b966be17025b9f6bddaca7511a9bb (patch) | |
tree | 8bc225739d34c413d0d6af6acd76b7297070cb26 /FS | |
parent | 22336a0eeba10b4d1a4a78801f83f7cef56a1a20 (diff) |
quote params correctly for HLR SIM export, #21514,
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_export/huawei_hlr.pm | 4 |
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} ) { |