summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormark <mark>2010-10-11 23:36:07 +0000
committermark <mark>2010-10-11 23:36:07 +0000
commit94d9f31448e3264c36f1590719cd9253d81ea0ae (patch)
tree2575f41a04978d31e8f73fac36f356a50743fe77
parenteec4949e2c8f09a0b89331437186b77c4db6ff38 (diff)
expiration month always 2 digits, RT#10161
-rw-r--r--httemplate/elements/select-month_year.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/select-month_year.html b/httemplate/elements/select-month_year.html
index 34476bc94..cbf90b6d7 100644
--- a/httemplate/elements/select-month_year.html
+++ b/httemplate/elements/select-month_year.html
@@ -12,7 +12,7 @@
% if ( $opt{'show_month_abbr'} ) {
% @mon = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
% } else {
-% @mon = ( 1 .. 12 );
+% @mon = ( ( map "0$_", 1 .. 9 ), 10 .. 12 ),
% }
%
% my $date = $opt{'selected_date'} || '';