![]() |
Sergey Kornilov admin 7/5/2005 |
you need to modify function WriteYears in functions.php file for this purpose. See my changes in bold. function WriteYears($y) { global $cYearRadius; $tm=localtime(time(),true); $ret='<option value=""> </option>'; for($i=2002;$i<=2005;$i++) $ret.='<option value="'.$i.'" '.($i==$y?"selected":"").'>'.$i.'</option>'; return $ret; } |
|
500277 7/5/2005 |
Sergey Thanks! |