[freeside-commits] branch master updated. d94f2b5d906b966be17025b9f6bddaca7511a9bb
Mark Wells
mark at 420.am
Mon Apr 29 16:10:31 PDT 2013
The branch, master has been updated
via d94f2b5d906b966be17025b9f6bddaca7511a9bb (commit)
from 22336a0eeba10b4d1a4a78801f83f7cef56a1a20 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d94f2b5d906b966be17025b9f6bddaca7511a9bb
Author: Mark Wells <mark at freeside.biz>
Date: Mon Apr 29 16:09:17 2013 -0700
quote params correctly for HLR SIM export, #21514,
diff --git a/FS/FS/part_export/huawei_hlr.pm b/FS/FS/part_export/huawei_hlr.pm
index 0079818..41cbbfb 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} ) {
-----------------------------------------------------------------------
Summary of changes:
FS/FS/part_export/huawei_hlr.pm | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list