freeside/fs_selfservice/FS-SelfService/cgi make_payment.html,1.8,1.9

ivan ivan at pouncequick.420.am
Fri Jun 25 10:57:05 PDT 2004


Update of /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi
In directory pouncequick:/tmp/cvs-serv21616/fs_selfservice/FS-SelfService/cgi

Modified Files:
	make_payment.html 
Log Message:
fix one-time card charging not pulling in exp date?

Index: make_payment.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi/make_payment.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- make_payment.html	22 Mar 2004 12:50:07 -0000	1.8
+++ make_payment.html	25 Jun 2004 17:57:02 -0000	1.9
@@ -46,7 +46,7 @@
         <TD>
           <SELECT NAME="month">
             <%= for ( ( map "0$_", 1 .. 9 ), 11, 12 ) {
-                  $OUT .= '<OPTION'. ($_ eq $month ? ' SELECTED' : ''). ">$_\n";
+                  $OUT .= '<OPTION'. ($_ == $month ? ' SELECTED' : ''). ">$_\n";
             } %>
           </SELECT>
         </TD>
@@ -54,7 +54,7 @@
         <TD>
           <SELECT NAME="year">
             <%= my @a = localtime; for ( $a[5]+1900 .. $a[5]+1915 ) {
-                  $OUT .= '<OPTION'. ($_ eq $year ? ' SELECTED' : ''). ">$_\n";
+                  $OUT .= '<OPTION'. ($_ == $year ? ' SELECTED' : ''). ">$_\n";
             } %>
           </SELECT>
         </TD>




More information about the freeside-commits mailing list