summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-08-31 22:26:32 -0500
committerJonathan Prykop <jonathan@freeside.biz>2016-08-31 22:26:32 -0500
commit259777e4667fc8a45496ba2805d1f7e01c75ac7b (patch)
tree7a041440834c95c25ab66b6065d90e24f3e2e65c /httemplate
parentf61619b95f05b576518ea698ad7e22267b4c36c4 (diff)
RT#71890: SelfService API: Return monthly recurring fee [display_recurring, v3 reconcile bug fix]
Diffstat (limited to 'httemplate')
-rw-r--r--httemplate/view/cust_main/billing.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html
index eed3baf4b..7be320131 100644
--- a/httemplate/view/cust_main/billing.html
+++ b/httemplate/view/cust_main/billing.html
@@ -30,8 +30,8 @@
% if ( $cust_main->num_ncancelled_pkgs < 54 ) {
% foreach my $freq_info ($cust_main->display_recurring) {
<TR>
- <TH ALIGN="right"><% emt( ucfirst($freq_info->{'freq_pretty'}). ' recurring' ) %></TH>
- <TD><% $money_char. sprintf('%.2f', $freq_info->{'amount'}) %></TD>
+ <TD ALIGN="right"><% emt( ucfirst($freq_info->{'freq_pretty'}). ' recurring' ) %></TD>
+ <TD BGCOLOR="#ffffff"><% $money_char. sprintf('%.2f', $freq_info->{'amount'}) %></TD>
</TR>
% }
% }