summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs_selfservice/FS-SelfService/cgi/make_payment.html2
-rw-r--r--httemplate/misc/payment.cgi2
2 files changed, 2 insertions, 2 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/make_payment.html b/fs_selfservice/FS-SelfService/cgi/make_payment.html
index a0fb5c3f3..cf6d62e22 100644
--- a/fs_selfservice/FS-SelfService/cgi/make_payment.html
+++ b/fs_selfservice/FS-SelfService/cgi/make_payment.html
@@ -45,7 +45,7 @@
<TD>Exp.</TD>
<TD>
<SELECT NAME="month">
- <%= for ( ( map "0$_", 1 .. 9 ), 11, 12 ) {
+ <%= for ( ( map "0$_", 1 .. 9 ), 10 .. 12 ) {
$OUT .= '<OPTION'. ($_ == $month ? ' SELECTED' : ''). ">$_\n";
} %>
</SELECT>
diff --git a/httemplate/misc/payment.cgi b/httemplate/misc/payment.cgi
index cea77fe1a..02c6c5428 100644
--- a/httemplate/misc/payment.cgi
+++ b/httemplate/misc/payment.cgi
@@ -92,7 +92,7 @@ function achclose() {
<TD>Exp.</TD>
<TD>
<SELECT NAME="month">
- <% for ( ( map "0$_", 1 .. 9 ), 11, 12 ) { %>
+ <% for ( ( map "0$_", 1 .. 9 ), 10 .. 12 ) { %>
<OPTION<%= $_ == $month ? ' SELECTED' : '' %>><%= $_ %>
<% } %>
</SELECT>