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 <[email protected]>
Committer: Matt <[email protected]>
This commit is contained in:
martinlanghoff
2007-04-12 00:46:27 +00:00
parent 284060cc7e
commit 35decbd8be
+1 -1
View File
@@ -3917,7 +3917,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;