summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/payment_history.html
diff options
context:
space:
mode:
authorivan <ivan>2011-10-17 20:56:14 +0000
committerivan <ivan>2011-10-17 20:56:14 +0000
commit17470f0458a1cf5cf3ef7ebbcbbda836d37a7ee1 (patch)
tree2e57c4479a84d547c816bfb076029e74e8d44ba4 /httemplate/view/cust_main/payment_history.html
parent83bc1fdf7145a2525b7e48f1dc6064e55ab4f31b (diff)
remove echeck-no_routing, never should have been there in the first place
Diffstat (limited to 'httemplate/view/cust_main/payment_history.html')
-rw-r--r--httemplate/view/cust_main/payment_history.html6
1 files changed, 1 insertions, 5 deletions
diff --git a/httemplate/view/cust_main/payment_history.html b/httemplate/view/cust_main/payment_history.html
index 24988eae4..64a708976 100644
--- a/httemplate/view/cust_main/payment_history.html
+++ b/httemplate/view/cust_main/payment_history.html
@@ -513,11 +513,7 @@ sub translate_payinfo {
$payinfo = $object->paymask;
} elsif ( $payby eq 'CHEK' ) {
my( $account, $aba ) = split('@', $object->paymask );
- if ( $conf->exists('echeck-no_routing') ) {
- $payinfo = emt("Acct #[_1]", $account);
- } else {
- $payinfo = emt("ABA [_1], Acct #[_2]",$aba,$account);
- }
+ $payinfo = emt("ABA [_1], Acct #[_2]",$aba,$account);
}
($payby,$payinfo);