summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-11-28 10:30:35 -0500
committerChristopher Burger <burgerc@freeside.biz>2018-11-28 10:30:35 -0500
commit01bf59988d1e8617a422dcd564a87582ed75a7ed (patch)
tree429e94c04b9063d8d00af672b375e117c1ede5f8 /FS/FS
parent8f377efa3643b02c7ab25c989903813591888a1a (diff)
RT# 81126 - fixed require svc_broadband ip check
Diffstat (limited to 'FS/FS')
-rwxr-xr-xFS/FS/svc_broadband.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_broadband.pm b/FS/FS/svc_broadband.pm
index d089f41..d05ae72 100755
--- a/FS/FS/svc_broadband.pm
+++ b/FS/FS/svc_broadband.pm
@@ -97,7 +97,7 @@ points to. You can ask the object for a copy with the I<hash> method.
sub table_info {
my $conf = new FS::Conf;
- my $ip_addr_required = $conf->exists('svc_broadband-allow_null_ip_addr');
+ my $ip_addr_required = $conf->exists('svc_broadband-allow_null_ip_addr') ? '' : '1';
{
'name' => 'Wireless broadband',
'name_plural' => 'Wireless broadband services',