Fixed typo so dateto uri parameter works.

This commit is contained in:
moodler 2005-10-31 07:33:04 +00:00
parent a2bed05944
commit 3ad24ceaeb

View File

@ -39,7 +39,7 @@
if ($timetorestrict) { if ($timetorestrict) {
$dateto = make_timestamp($toyear, $tomonth, $today, $tohour, $tominute); $dateto = make_timestamp($toyear, $tomonth, $today, $tohour, $tominute);
} else { } else {
$dateto = optional_param('datefrom', 0, PARAM_INT); // Ending date $dateto = optional_param('dateto', 0, PARAM_INT); // Ending date
} }