From 521af16fe54701f166afbe2f9f7ad3702c656bb0 Mon Sep 17 00:00:00 2001 From: Stephen Bourget Date: Thu, 15 Jan 2015 12:56:25 -0500 Subject: [PATCH] MDL-38277 Lesson: Fix strings on activity report --- mod/lesson/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/lesson/lib.php b/mod/lesson/lib.php index a43aba0b15c..521821579a6 100644 --- a/mod/lesson/lib.php +++ b/mod/lesson/lib.php @@ -198,8 +198,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("attempt", "lesson", ""), get_string("numberofpagesviewed", "lesson", ""), + get_string("numberofcorrectanswers", "lesson", ""), get_string("time")); $table->width = "100%"; $table->align = array ("center", "center", "center", "center"); $table->size = array ("*", "*", "*", "*");