summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-06-21 14:25:56 -0700
committerIvan Kohler <ivan@freeside.biz>2012-06-21 14:25:56 -0700
commitbdc7f571703df7e79c9b154631615fa9929713a0 (patch)
treeb02295c5192bc396f2d5deb02f7fdc8caf01274b
parente7d76b20692213f2eee6e9992d960a4ce4b0dac0 (diff)
fix refund deletion, RT#18192FREESIDE_2_1_BRANCH
-rw-r--r--httemplate/view/cust_main/payment_history.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/payment_history.html b/httemplate/view/cust_main/payment_history.html
index 3288f15a7..dbfaaf758 100644
--- a/httemplate/view/cust_main/payment_history.html
+++ b/httemplate/view/cust_main/payment_history.html
@@ -480,7 +480,7 @@ foreach my $cust_credit ($cust_main->cust_credit) {
foreach my $cust_refund ($cust_main->cust_refund) {
push @history, {
'date' => $cust_refund->_date,
- 'desc' => include('payment_history/refund.html', $cust_refund),
+ 'desc' => include('payment_history/refund.html', $cust_refund, %opt),
'refund' => $cust_refund->refund,
};