freeside/httemplate/misc payment.cgi,1.2,1.3

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


Update of /home/cvs/cvsroot/freeside/httemplate/misc
In directory pouncequick:/tmp/cvs-serv21616/httemplate/misc

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

Index: payment.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/misc/payment.cgi,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- payment.cgi	25 Jun 2004 17:26:54 -0000	1.2
+++ payment.cgi	25 Jun 2004 17:57:02 -0000	1.3
@@ -93,7 +93,7 @@
           <TD>
             <SELECT NAME="month">
               <% for ( ( map "0$_", 1 .. 9 ), 11, 12 ) { %>
-                <OPTION<%= $_ eq $month ? ' SELECTED' : '' %>><%= $_ %>
+                <OPTION<%= $_ == $month ? ' SELECTED' : '' %>><%= $_ %>
               <% } %>
             </SELECT>
           </TD>
@@ -101,7 +101,7 @@
           <TD>
             <SELECT NAME="year">
               <% my @a = localtime; for ( $a[5]+1900 .. $a[5]+1915 ) { %>
-                <OPTION<%= $_ eq $year ? ' SELECTED' : '' %>><%= $_ %>
+                <OPTION<%= $_ == $year ? ' SELECTED' : '' %>><%= $_ %>
               <% } %>
             </SELECT>
           </TD>




More information about the freeside-commits mailing list