mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
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:
parent
77d5965638
commit
34177c462c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue