MDL-38277 Lesson: Fix strings on activity report

This commit is contained in:
Stephen Bourget 2015-01-15 12:41:57 -05:00
parent da0ef2e4cf
commit 9e84423b79
2 changed files with 5 additions and 2 deletions

View file

@ -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 ("*", "*", "*", "*");