diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-12-28 12:48:18 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-12-28 12:48:18 -0800 |
commit | 0497c3eef8d7fb384ec09cf2ef82d3324faef89c (patch) | |
tree | bd7053b381e8933b1bee63f775689e972b072070 | |
parent | 5e05db4292f9fb330b732367edaace91d1098d8e (diff) |
default payby for new installs, regression from 3.x, RT#73853
-rw-r--r-- | httemplate/view/cust_main/menu.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/menu.html b/httemplate/view/cust_main/menu.html index 6f177c3c4..4d35a0235 100644 --- a/httemplate/view/cust_main/menu.html +++ b/httemplate/view/cust_main/menu.html @@ -83,7 +83,10 @@ my $custnum = $cust_main->custnum; my $curuser = $FS::CurrentUser::CurrentUser; my $conf = FS::Conf->new; -my %payby = map { $_ => 1 } $conf->config('payby'); +my @payby = grep /\w/, $conf->config('payby'); +@payby = (qw( CARD DCRD CHEK DCHK )) + unless @payby; +my %payby = map { $_ => 1 } @payby; # cached for conditions, to avoid looking it up twice my $invoicing_list_emailonly = $cust_main->invoicing_list_emailonly; |