From 9604ccb1318b14b0473851918cd1aff21eb79207 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 11 Jun 2002 04:28:01 +0000 Subject: [PATCH] Tiny fix so that when today is specified, it's selected in the list --- course/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") ); -- 2.39.5