summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-06-21 14:25:50 -0700
committerIvan Kohler <ivan@freeside.biz>2012-06-21 14:25:50 -0700
commitf8befd3b7d617e918214ef786c642130d5634675 (patch)
tree84e8e62f19df86151cf25cc4e96e2714a0fe8490
parentf5881f03875aa1460e76947cb5a45f96bf0144e4 (diff)
fix refund deletion, RT#18192
-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 c7a7c80..9e08c0c 100644
--- a/httemplate/view/cust_main/payment_history.html
+++ b/httemplate/view/cust_main/payment_history.html
@@ -491,7 +491,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,
};