Skip to content

Commit 482b1ea

Browse files
committed
Merge branch 'MDL-27329' of git://git.luns.net.uk/moodle
2 parents 4357214 + af27c69 commit 482b1ea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

course/lib.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ function print_log($course, $user=0, $date=0, $order="l.time ASC", $page=0, $per
347347
$table->head = array(
348348
get_string('time'),
349349
get_string('ip_address'),
350-
get_string('fullnamecourse'),
350+
get_string('fullnameuser'),
351351
get_string('action'),
352352
get_string('info')
353353
);
@@ -462,7 +462,7 @@ function print_mnet_log($hostid, $course, $user=0, $date=0, $order="l.time ASC",
462462
}
463463
echo "<th class=\"c1 header\">".get_string('time')."</th>\n";
464464
echo "<th class=\"c2 header\">".get_string('ip_address')."</th>\n";
465-
echo "<th class=\"c3 header\">".get_string('fullnamecourse')."</th>\n";
465+
echo "<th class=\"c3 header\">".get_string('fullnameuser')."</th>\n";
466466
echo "<th class=\"c4 header\">".get_string('action')."</th>\n";
467467
echo "<th class=\"c5 header\">".get_string('info')."</th>\n";
468468
echo "</tr>\n";
@@ -529,7 +529,7 @@ function print_log_csv($course, $user, $date, $order='l.time DESC', $modname,
529529
global $DB;
530530

531531
$text = get_string('course')."\t".get_string('time')."\t".get_string('ip_address')."\t".
532-
get_string('fullnamecourse')."\t".get_string('action')."\t".get_string('info');
532+
get_string('fullnameuser')."\t".get_string('action')."\t".get_string('info');
533533

534534
if (!$logs = build_logs_array($course, $user, $date, $order, '', '',
535535
$modname, $modid, $modaction, $groupid)) {
@@ -642,7 +642,7 @@ function print_log_xls($course, $user, $date, $order='l.time DESC', $modname,
642642

643643
$worksheet = array();
644644
$headers = array(get_string('course'), get_string('time'), get_string('ip_address'),
645-
get_string('fullnamecourse'), get_string('action'), get_string('info'));
645+
get_string('fullnameuser'), get_string('action'), get_string('info'));
646646

647647
// Creating worksheets
648648
for ($wsnumber = 1; $wsnumber <= $nroPages; $wsnumber++) {
@@ -753,7 +753,7 @@ function print_log_ods($course, $user, $date, $order='l.time DESC', $modname,
753753

754754
$worksheet = array();
755755
$headers = array(get_string('course'), get_string('time'), get_string('ip_address'),
756-
get_string('fullnamecourse'), get_string('action'), get_string('info'));
756+
get_string('fullnameuser'), get_string('action'), get_string('info'));
757757

758758
// Creating worksheets
759759
for ($wsnumber = 1; $wsnumber <= $nroPages; $wsnumber++) {
@@ -4229,4 +4229,4 @@ function course_page_type_list($pagetype, $parentcontext, $currentcontext) {
42294229
'course-view-*'=>get_string('page-course-view-x', 'pagetype')
42304230
);
42314231
}
4232-
}
4232+
}

0 commit comments

Comments
 (0)