fixed name order in headings on log.php

This commit is contained in:
gustav_delius 2004-08-28 17:18:36 +00:00
parent 864616e5f5
commit ce265a46aa

View file

@ -42,7 +42,7 @@
if (!$u = get_record("user", "id", $user) ) {
error("That's an invalid user!");
}
$userinfo = "$u->firstname $u->lastname";
$userinfo = fullname($u, isteacher($course->id));
}
if ($date) {
$dateinfo = userdate($date, get_string("strftimedaydate"));