diff options
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Conf.pm | 7 | ||||
-rw-r--r-- | FS/FS/cust_main.pm | 3 |
2 files changed, 0 insertions, 10 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index d6da596c2..bee177052 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -3024,13 +3024,6 @@ and customer address. Include units.', }, { - 'key' => 'echeck-no_routing', - 'section' => 'billing', - 'description' => 'Disable the routing number entirely for Electronic Check payment info.', - 'type' => 'checkbox', - }, - - { 'key' => 'voip-cust_accountcode_cdr', 'section' => 'telephony', 'description' => 'Enable the per-customer option for CDR breakdown by accountcode.', diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 041ecb1b4..f96a45aef 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -1954,9 +1954,6 @@ sub check { if ( $conf->exists('cust_main-require-bank-branch') ) { $payinfo =~ /^(\d+)\@(\d+)\.(\d+)$/ or return 'invalid echeck account@branch.bank'; $payinfo = "$1\@$2.$3"; - } elsif ( $conf->exists('echeck-no_routing') ) { - $payinfo =~ /^(\d+)\@(\d*)$/ or return 'invalid echeck account'; - $payinfo = "$1\@$2"; } elsif ( $conf->exists('echeck-nonus') ) { $payinfo =~ /^(\d+)\@(\d+)$/ or return 'invalid echeck account@aba'; $payinfo = "$1\@$2"; |