Typo in date calculation!

This commit is contained in:
moodler 2003-09-02 02:02:14 +00:00
parent 559573a2be
commit 9f50e9a667

View File

@ -52,7 +52,7 @@
$timenow = time();
if ($course->format == "weeks" and $journal->days) {
$timestart = $course->startdate + (($cw->section - 1) * 608400);
$timestart = $course->startdate + (($cw->section - 1) * 604800);
if ($journal->days) {
$timefinish = $timestart + (3600 * 24 * $journal->days);
} else {