View Single Post
  #13  
Old 09-21-2005, 01:44 PM
 
mffowler mffowler is offline
 

X-Adept
  
Join Date: Mar 2003
Location: Melbourne, Australia
Posts: 811
 

Default

Still Months in a recent 4.0.15 upgrade...

For anyone needing the change, it is only:

Find:
Code:
<TR valign="middle"> <TD align="right">{$lng.lbl_cc_expiration}</TD> <TD><FONT class="Star">{if $config.General.check_cc_number eq "Y" || $smarty.get.mode eq 'checkout'}*{else}{/if}</FONT></TD> <TD nowrap colspan="3"> {if #safeCCNum# eq ""} {html_select_date prefix="card_expire_" display_days=false end_year="+10" time=$userinfo.card_expire_time} {else} {#safeCCExp#} <INPUT type="hidden" name="card_expire" value="{#safeCCExp#}"> {/if} </TD> </TR>

Replace with this:
Code:
<TR valign="middle"> <TD align="right">{$lng.lbl_cc_expiration}</TD> <TD><FONT class="Star">{if $config.General.check_cc_number eq "Y" || $smarty.get.mode eq 'checkout'}*{else}{/if}</FONT></TD> <TD nowrap colspan="3"> {if #safeCCNum# eq ""} {html_select_date prefix="card_expire_" month_format="%m" display_days=false end_year="+5" time=$userinfo.card_expire_time} {else} {#safeCCExp#} <INPUT type="hidden" name="card_expire" value="{#safeCCExp#}"> {/if} </TD> </TR>
__________________
4.1.9
Reply With Quote