diff options
author | ivan <ivan> | 2002-10-10 16:48:07 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-10-10 16:48:07 +0000 |
commit | 77340c5ea513c0b80bb15101581425092b2a431a (patch) | |
tree | b49258f082f20cdffb9cc303c829f7f81ff9ceed | |
parent | 608d25c3da1680cb3d6e85dd6e9a7348d410cff3 (diff) |
bugfix in payby-default HIDE expiration dates
-rwxr-xr-x | httemplate/edit/cust_main.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index 38d8d2b7e..0921cb373 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -367,8 +367,8 @@ if ( $payby_default eq 'HIDE' ) { die "unrecognized expiration date format: $date"; } - print qq!<INPUT TYPE="hidden" NAME="${payby}_month" VALUE="$m"!. - qq!<INPUT TYPE="hidden" NAME="${payby}_year" VALUE="$y"!; + print qq!<INPUT TYPE="hidden" NAME="${payby}_month" VALUE="$m">!. + qq!<INPUT TYPE="hidden" NAME="${payby}_year" VALUE="$y">!; } |