diff options
author | ivan <ivan> | 2004-06-25 17:57:02 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-06-25 17:57:02 +0000 |
commit | 83ce2076d59c3c27beb78dd5892b2da99fd60ec1 (patch) | |
tree | ae8d9127c81b91a238db8f16f51dd8ea72d49bc5 /httemplate/misc | |
parent | 3bdf0736baab914ce151849b1bc0139f5a554ca2 (diff) |
fix one-time card charging not pulling in exp date?
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/payment.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/misc/payment.cgi b/httemplate/misc/payment.cgi index 699b31724..cea77fe1a 100644 --- a/httemplate/misc/payment.cgi +++ b/httemplate/misc/payment.cgi @@ -93,7 +93,7 @@ function achclose() { <TD> <SELECT NAME="month"> <% for ( ( map "0$_", 1 .. 9 ), 11, 12 ) { %> - <OPTION<%= $_ eq $month ? ' SELECTED' : '' %>><%= $_ %> + <OPTION<%= $_ == $month ? ' SELECTED' : '' %>><%= $_ %> <% } %> </SELECT> </TD> @@ -101,7 +101,7 @@ function achclose() { <TD> <SELECT NAME="year"> <% my @a = localtime; for ( $a[5]+1900 .. $a[5]+1915 ) { %> - <OPTION<%= $_ eq $year ? ' SELECTED' : '' %>><%= $_ %> + <OPTION<%= $_ == $year ? ' SELECTED' : '' %>><%= $_ %> <% } %> </SELECT> </TD> |