summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2002-11-04 20:51:43 +0000
committerivan <ivan>2002-11-04 20:51:43 +0000
commit62e07cc34e38055a59ce160e1c06fcc5edb26927 (patch)
tree237d3b13b6b017633ae6d63bc40ed338268bbafb /httemplate
parentdfaabf0c82291f2839922065aa80b2590bab25b0 (diff)
fix cosmetic bug on online time view
Diffstat (limited to 'httemplate')
-rwxr-xr-xhttemplate/view/svc_acct.cgi8
1 files changed, 5 insertions, 3 deletions
diff --git a/httemplate/view/svc_acct.cgi b/httemplate/view/svc_acct.cgi
index 3fb9156cc..e86d43f30 100755
--- a/httemplate/view/svc_acct.cgi
+++ b/httemplate/view/svc_acct.cgi
@@ -60,15 +60,17 @@ function areyousure(href) {
if ( $part_svc->part_export('sqlradius') ) {
my $last_bill;
+ my %plandata;
if ( $cust_pkg ) {
#false laziness w/httemplate/edit/part_pkg... this stuff doesn't really
#belong in plan data
- my %plandata = map { /^(\w+)=(.*)$/; ( $1 => $2 ); }
- split("\n", $cust_pkg->part_pkg->plandata );
+ %plandata = map { /^(\w+)=(.*)$/; ( $1 => $2 ); }
+ split("\n", $cust_pkg->part_pkg->plandata );
$last_bill = $cust_pkg->last_bill;
} else {
$last_bill = 0;
+ %plandata = ();
}
my $seconds = $svc_acct->seconds_since_sqlradacct( $last_bill, time );
@@ -83,7 +85,7 @@ if ( $part_svc->part_export('sqlradius') ) {
}
if ( $cust_pkg ) {
- print ' this billing cycle (since '. time2str(%C, $last_bill). ') - '.
+ print ' this billing cycle (since '. time2str("%C", $last_bill). ') - '.
$plandata{recur_included_hours}. ' total hours in plan<BR><BR>';
} else {
print ' (no billing cycle available for unaudited account)<BR><BR>';