mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +02:00
MDL-32275 enrol: Last site access column now shows last course access
This commit is contained in:
parent
272fec367f
commit
e89682d822
6 changed files with 28 additions and 13 deletions
|
@ -407,7 +407,7 @@ if (!isset($hiddenfields['firstaccess'])) {
|
|||
} else {
|
||||
$datestring = get_string("never");
|
||||
}
|
||||
echo html_writer::tag('dt', get_string('firstaccess'));
|
||||
echo html_writer::tag('dt', get_string('firstsiteaccess'));
|
||||
echo html_writer::tag('dd', $datestring);
|
||||
}
|
||||
if (!isset($hiddenfields['lastaccess'])) {
|
||||
|
@ -416,7 +416,7 @@ if (!isset($hiddenfields['lastaccess'])) {
|
|||
} else {
|
||||
$datestring = get_string("never");
|
||||
}
|
||||
echo html_writer::tag('dt', get_string('lastaccess'));
|
||||
echo html_writer::tag('dt', get_string('lastsiteaccess'));
|
||||
echo html_writer::tag('dd', $datestring);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue