diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-11-28 08:55:29 -0500 | 
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-11-28 10:55:24 -0500 | 
| commit | d616680361b7e453260fa1eb062f016982f8e836 (patch) | |
| tree | 7161fd2db3d254300f04f45fe79d0c312118b7bf /FS/FS | |
| parent | a4c7d2df1a8e03a5bc4ee51a16734e4a255a0eb2 (diff) | |
RT# 81126 - IP address field now shows required when required, IP address and Radius Group sticky on error when provisioning svc broadband
Conflicts:
	FS/FS/svc_broadband.pm
Diffstat (limited to 'FS/FS')
| -rwxr-xr-x | FS/FS/svc_broadband.pm | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/FS/FS/svc_broadband.pm b/FS/FS/svc_broadband.pm index 9cd085942..45c6b1158 100755 --- a/FS/FS/svc_broadband.pm +++ b/FS/FS/svc_broadband.pm @@ -96,6 +96,8 @@ points to.  You can ask the object for a copy with the I<hash> method.  =cut  sub table_info { +  my $conf = new FS::Conf; +  my $ip_addr_required = $conf->exists('svc_broadband-allow_null_ip_addr');    {      'name' => 'Wireless broadband',      'name_plural' => 'Wireless broadband services', @@ -117,7 +119,10 @@ sub table_info {                           'type'     => 'fcc_477_speed',                           'def_info' => 'both upload and download speed must be set to FCC 477 information if using that modifier',                         }, -      'ip_addr'     => 'IP address', +      'ip_addr'     => { +                         'label' => 'IP address', +                         'required' => $ip_addr_required, +                       },        'blocknum'    =>         { 'label' => 'Address block',                           'type'  => 'select', | 
