2
I don't have piCal-0.7, I only have 0.9 but I suspect it's "similar"...
look in ./class/piCal_xoops.php - around line 620 you'll find something like:
$year_options = "" ;
for( $y = 2001 ; $y <= 2020 ; $y ++ ) {
if( $y == $this->year ) {
$year_options .= "tttn" ;
} else {
$year_options .= "tttn" ;
}
}
I suspect the "for" line looks something like:
for( $y = 2001 ; $y <= 2010 ; $y ++ ) {
Change the '2010' to something like '2020' and see if that fixes the problem. Don't forget to clear the template cache or the change won't appear to take effect.