From 259777e4667fc8a45496ba2805d1f7e01c75ac7b Mon Sep 17 00:00:00 2001 From: Jonathan Prykop Date: Wed, 31 Aug 2016 22:26:32 -0500 Subject: [PATCH] RT#71890: SelfService API: Return monthly recurring fee [display_recurring, v3 reconcile bug fix] --- httemplate/view/cust_main/billing.html | 4 ++-- 1 file 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) { - <% emt( ucfirst($freq_info->{'freq_pretty'}). ' recurring' ) %> - <% $money_char. sprintf('%.2f', $freq_info->{'amount'}) %> + <% emt( ucfirst($freq_info->{'freq_pretty'}). ' recurring' ) %> + <% $money_char. sprintf('%.2f', $freq_info->{'amount'}) %> % } % } -- 2.11.0