diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-07-26 10:53:18 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-07-26 10:53:18 -0400 |
commit | c2e0d0fcb917af1832dd6eb1d1dd787b492eb387 (patch) | |
tree | d896ed8b2e4729ddfa3448d8a9d4d1ce7b1d9c18 /fs_selfservice | |
parent | f3c59969f9182b4b9d157508a65da0c66f753379 (diff) |
RT# 74537 - added checks in MyAccount.pm for config option ach read only
Diffstat (limited to 'fs_selfservice')
-rw-r--r-- | fs_selfservice/FS-SelfService/cgi/make_ach_payment.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/make_ach_payment.html b/fs_selfservice/FS-SelfService/cgi/make_ach_payment.html index 37fd46435..1183b2ba0 100644 --- a/fs_selfservice/FS-SelfService/cgi/make_ach_payment.html +++ b/fs_selfservice/FS-SelfService/cgi/make_ach_payment.html @@ -31,7 +31,7 @@ EOF <%= $OUT = ''; if ($ach_read_only) { - if ($payby == 'CHEK') { + if ($payby eq 'CHEK') { $OUT .= '<TR><TD COLSPAN=2><INPUT TYPE="hidden" NAME="auto" VALUE="1"></TD></TR>'; } } else { |