From cccd285acf6fd815f69d4ab72ee8ba90485751ac Mon Sep 17 00:00:00 2001 From: tjhunt Date: Fri, 20 Jul 2007 16:12:06 +0000 Subject: [PATCH] Change where it looks for quiz report language files, to match the way the existing reports currenly work. --- lib/moodlelib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/moodlelib.php b/lib/moodlelib.php index ab77ea4a294..7bddc35970b 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -4258,7 +4258,8 @@ function places_to_search_for_lang_strings() { 'enrol_' => array('enrol'), 'format_' => array('course/format'), 'qtype_' => array('question/type'), - 'report_' => array($CFG->admin.'/report', 'course/report', 'mod/quiz/report'), + 'quiz_' => array('mod/quiz/report'), + 'report_' => array($CFG->admin.'/report', 'course/report'), 'resource_' => array('mod/resource/type'), '' => array('mod') );