[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 8f17111eec549dfa9c94688ae69f3b12026755a6
Ivan
ivan at 420.am
Tue Feb 25 16:59:06 PST 2014
The branch, FREESIDE_2_3_BRANCH has been updated
via 8f17111eec549dfa9c94688ae69f3b12026755a6 (commit)
from 370feb843c120874851e58a3600f2e54ed6e8a69 (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 8f17111eec549dfa9c94688ae69f3b12026755a6
Author: Ivan Kohler <ivan at freeside.biz>
Date: Tue Feb 25 16:59:02 2014 -0800
fix fallout from incomplete backport of svc_cable, RT#27693, fallout from RT#22009
diff --git a/httemplate/view/svc_broadband.cgi b/httemplate/view/svc_broadband.cgi
index 75e673c..05b6ac5 100644
--- a/httemplate/view/svc_broadband.cgi
+++ b/httemplate/view/svc_broadband.cgi
@@ -26,15 +26,15 @@ $labels{'coordinates'} = 'Latitude/Longitude';
my @fields = (
'description',
- { field => 'routernum', value => \&router },
+ { field => 'routernum', value_callback => \&router },
'speed_down',
'speed_up',
- { field => 'ip_addr', value => \&ip_addr },
- { field => 'sectornum', value => \§ornum },
- { field => 'mac_addr', value => \&mac_addr },
+ { field => 'ip_addr', value_callback => \&ip_addr },
+ { field => 'sectornum', value_callback => \§ornum },
+ { field => 'mac_addr', value_callback => \&mac_addr },
#'latitude',
#'longitude',
- { field => 'coordinates', value => \&coordinates },
+ { field => 'coordinates', value_callback => \&coordinates },
'altitude',
'vlan_profile',
'authkey',
@@ -42,7 +42,7 @@ my @fields = (
);
push @fields,
- { field => 'usergroup', value => \&usergroup }
+ { field => 'usergroup', value_callback => \&usergroup }
if $conf->exists('svc_broadband-radius');
sub router {
-----------------------------------------------------------------------
Summary of changes:
httemplate/view/svc_broadband.cgi | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
More information about the freeside-commits
mailing list