From: martin Date: Tue, 11 Jun 2002 04:28:01 +0000 (+0000) Subject: Tiny fix so that when today is specified, it's selected in the list X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=9604ccb1318b14b0473851918cd1aff21eb79207;p=moodle.git Tiny fix so that when today is specified, it's selected in the list --- diff --git a/course/lib.php b/course/lib.php index 2cd94ca288..f6f4f9d373 100644 --- a/course/lib.php +++ b/course/lib.php @@ -38,7 +38,7 @@ function print_log_selector_form($course, $selecteduser=0, $selecteddate="today" $timenow = time(); // GMT // What day is it now for the user, and when is midnight that day (in GMT). - $timemidnight = usergetmidnight($timenow); + $timemidnight = $today = usergetmidnight($timenow); // Put today up the top of the list $dates = array("$timemidnight" => "Today, ".userdate($timenow, "j F Y") );