summaryrefslogtreecommitdiff
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:34:27 -0500
commit9de321e11b1463bda7d8dc9cfa2c438c66687a4b (patch)
tree56fc153a3475cc195888b8d2dffb643e5f98b8c3
parent6d70b39843cf76f10e676e1861d613b15c0bb905 (diff)
RT# 81126 - fixed require svc_broadband ip check
-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',