From 01bf59988d1e8617a422dcd564a87582ed75a7ed Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Wed, 28 Nov 2018 10:30:35 -0500 Subject: [PATCH] RT# 81126 - fixed require svc_broadband ip check --- FS/FS/svc_broadband.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', -- 2.11.0