[freeside-commits] branch master updated. 01bf59988d1e8617a422dcd564a87582ed75a7ed

Christopher Burger burgerc at freeside.biz
Wed Nov 28 07:31:18 PST 2018


The branch, master has been updated
       via  01bf59988d1e8617a422dcd564a87582ed75a7ed (commit)
      from  8f377efa3643b02c7ab25c989903813591888a1a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 01bf59988d1e8617a422dcd564a87582ed75a7ed
Author: Christopher Burger <burgerc at freeside.biz>
Date:   Wed Nov 28 10:30:35 2018 -0500

    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<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',

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/svc_broadband.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




More information about the freeside-commits mailing list