diff options
-rwxr-xr-x | FS/FS/svc_broadband.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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<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', |