From: Christopher Burger Date: Wed, 28 Nov 2018 15:30:35 +0000 (-0500) Subject: RT# 81126 - fixed require svc_broadband ip check X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=01bf59988d1e8617a422dcd564a87582ed75a7ed;ds=sidebyside RT# 81126 - fixed require svc_broadband ip check --- diff --git a/FS/FS/svc_broadband.pm b/FS/FS/svc_broadband.pm index d089f4105..d05ae72d0 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 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',