9
Well, you can, but as I read the code, it should take the current year and add 1 to it for the last selectable year, so I don't understand why you have this problem... however, in modules/news/admin/storyform.inc.php around line 170, the code is something like this:
$cyear = date('Y');
for ($xyear=($autoyear-8); $xyear < ($cyear+2); $xyear++) {
if ($xyear == $autoyear) {
$sel = 'selected="selected"';
} else {
$sel = '';
}
echo "";
}
echo "";
the important thing is ($cyear+2) that should take the current year and add 2 to it as the ending clause in the for loop. So either change $cyear to a hard-coded future year or change it to ($cyear+4) and see if that changes anything.
Do the same further down - around line 290 - where it looks like this:
$cyear = date('Y');
for ($xyear=($autoexpyear-8); $xyear < ($cyear+2); $xyear++) {
if ($xyear == $autoexpyear) {
$sel = 'selected="selected"';
} else {
$sel = '';
}
echo "";
}
echo "";