diff options
author | ivan <ivan> | 2002-11-05 23:41:07 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-11-05 23:41:07 +0000 |
commit | b4206f7dd4e3f00b1fac73245ade1d28388f2ad3 (patch) | |
tree | 5648e2becd19a37c73420b0c7cb7d90b5e87ccff /httemplate/view/svc_acct.cgi | |
parent | d32ae4e36b14a3418979856e3ee3f662c5290d65 (diff) |
fix for correct radacct column names
Diffstat (limited to 'httemplate/view/svc_acct.cgi')
-rwxr-xr-x | httemplate/view/svc_acct.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/svc_acct.cgi b/httemplate/view/svc_acct.cgi index 7295f577d..30480d1e8 100755 --- a/httemplate/view/svc_acct.cgi +++ b/httemplate/view/svc_acct.cgi @@ -79,10 +79,10 @@ if ( $part_svc->part_export('sqlradius') ) { my $s = $seconds%60; my $input = $svc_acct->attribute_since_sqlradacct( - $last_bill, time, 'Acct-Input-Octets' + $last_bill, time, 'AcctInputOctets' ) / 1048576; my $output = $svc_acct->attribute_since_sqlradacct( - $last_bill, time, 'Acct-Output-Octets' + $last_bill, time, 'AcctOutputOctets' ) / 1048576; if ( $seconds ) { |