diff options
author | Mark Wells <mark@freeside.biz> | 2013-04-29 16:18:13 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-04-29 16:18:13 -0700 |
commit | 97c67d2bf226fbe1cea8aceef36c24c3c406b74f (patch) | |
tree | 7e7d6f2e1a0ddcf67c865fc9798c8a07357a25c8 /FS | |
parent | d94f2b5d906b966be17025b9f6bddaca7511a9bb (diff) |
also indicate required export settings,
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_export/huawei_hlr.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FS/FS/part_export/huawei_hlr.pm b/FS/FS/part_export/huawei_hlr.pm index 41cbbfb58..aa09a1c64 100644 --- a/FS/FS/part_export/huawei_hlr.pm +++ b/FS/FS/part_export/huawei_hlr.pm @@ -18,16 +18,16 @@ $DEBUG = 0; @ISA = qw(FS::part_export); tie my %options, 'Tie::IxHash', - 'opname' => { label=>'Operator login' }, - 'pwd' => { label=>'Operator password' }, + 'opname' => { label=>'Operator login (required)' }, + 'pwd' => { label=>'Operator password (required)' }, 'tplid' => { label=>'Template number' }, 'hlrsn' => { label=>'HLR serial number' }, 'k4sno' => { label=>'K4 serial number' }, - 'cardtype' => { label => 'Card type', + 'cardtype' => { label => 'Card type (required)', type => 'select', options=> ['SIM', 'USIM'] }, - 'alg' => { label => 'Authentication algorithm', + 'alg' => { label => 'Authentication algorithm (required)', type => 'select', options=> ['COMP128_1', 'COMP128_2', |