Fixed 'off by one' month bug in month select boxes generated by

print_date_selector when users time zone set to GMT-13.


Author: Matt Clarkson <mattc@catalyst.net.nz>
Committer: Matt <mattc@catalyst.net.nz>
This commit is contained in:
martinlanghoff 2007-04-12 00:42:05 +00:00
parent 77d5965638
commit 34177c462c

View file

@ -4496,7 +4496,7 @@ function print_date_selector($day, $month, $year, $currenttime=0, $return=false)
$days[$i] = $i;
}
for ($i=1; $i<=12; $i++) {
$months[$i] = userdate(gmmktime(12,0,0,$i,1,2000), "%B");
$months[$i] = userdate(gmmktime(12,0,0,$i,15,2000), "%B");
}
for ($i=1970; $i<=2020; $i++) {
$years[$i] = $i;