Skip to content

Commit

Permalink
MDL-48591 calendar: Mini Cal Display DST Events
Browse files Browse the repository at this point in the history
  • Loading branch information
jrchamp committed Dec 18, 2014
1 parent 981f06f commit efa2b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calendar/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ function calendar_get_mini($courses, $groups, $users, $calmonth = false, $calyea

// These are used for DB queries, so we want unixtime, so we need to use Gregorian dates.
$display->tstart = make_timestamp($gy, $gm, $gd, $gh, $gmin, 0);
$display->tend = $display->tstart + ($display->maxdays * DAYSECS) - 1;
$display->tend = strtotime("+{$display->maxdays} days", $display->tstart) - 1;

// Align the starting weekday to fall in our display range
// This is simple, not foolproof.
Expand Down

0 comments on commit efa2b9b

Please sign in to comment.