diff options
author | jeff <jeff> | 2009-07-02 01:26:46 +0000 |
---|---|---|
committer | jeff <jeff> | 2009-07-02 01:26:46 +0000 |
commit | 883f6c25e41831d9183e9500accb89f4cb23ae73 (patch) | |
tree | 593536649a16b7b8fb911be58aaf1e60f31c0577 /httemplate/search | |
parent | a67fd3bbfeec137ebf494e36eaa920145b8509a1 (diff) |
update flat_introrate plan to better fit current codebase RT#4912
Diffstat (limited to 'httemplate/search')
-rwxr-xr-x | httemplate/search/cust_pkg.cgi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index 13d0c7af8..4e35b91dd 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -39,8 +39,9 @@ shift->part_pkg->option('setup_fee'), ); }, - sub { sprintf( $money_char.'%.2f', - shift->part_pkg->base_recur + sub { my $c = shift; + sprintf( $money_char.'%.2f', + $c->part_pkg->base_recur($c) ); }, sub { #shift->part_pkg->freq_pretty; |