mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-38277 Lesson: Fix strings on activity report
This commit is contained in:
parent
da0ef2e4cf
commit
9e84423b79
2 changed files with 5 additions and 2 deletions
|
@ -196,8 +196,8 @@ function lesson_user_complete($course, $user, $mod, $lesson) {
|
|||
"retry, timeseen")) {
|
||||
echo $OUTPUT->box_start();
|
||||
$table = new html_table();
|
||||
$table->head = array (get_string("attempt", "lesson"), get_string("numberofpagesviewed", "lesson"),
|
||||
get_string("numberofcorrectanswers", "lesson"), get_string("time"));
|
||||
$table->head = array (get_string("attemptheader", "lesson"), get_string("numberofpagesviewedheader", "lesson"),
|
||||
get_string("numberofcorrectanswersheader", "lesson"), get_string("time"));
|
||||
$table->width = "100%";
|
||||
$table->align = array ("center", "center", "center", "center");
|
||||
$table->size = array ("*", "*", "*", "*");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue