From 3a58ad11bcd6cc8075b831c976935f0ffc1a4d92 Mon Sep 17 00:00:00 2001 From: gustav_delius Date: Mon, 27 Mar 2006 08:45:02 +0000 Subject: [PATCH] The "Reports" tab is now a "Results" tab so that the grading fits in better. --- lang/en_utf8/quiz.php | 1 + mod/quiz/tabs.php | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/en_utf8/quiz.php b/lang/en_utf8/quiz.php index 5c564a976c..571bd721b7 100644 --- a/lang/en_utf8/quiz.php +++ b/lang/en_utf8/quiz.php @@ -387,6 +387,7 @@ $string['requirepasswordmessage'] = 'To attempt this quiz you need to know the q $string['requiresubnet'] = 'Require network address'; $string['response'] = 'Response'; $string['responses'] = 'Responses'; +$string['results'] = 'Results'; $string['reuseifpossible'] = 'reuse previously removed'; $string['review'] = 'Review'; $string['reviewafter'] = 'Allow review after quiz is closed'; diff --git a/mod/quiz/tabs.php b/mod/quiz/tabs.php index 502a5c4727..3607a3ec29 100644 --- a/mod/quiz/tabs.php +++ b/mod/quiz/tabs.php @@ -29,11 +29,10 @@ $inactive = array(); $row[] = new tabobject('info', "$CFG->wwwroot/mod/quiz/view.php?q=$quiz->id", get_string('info', 'quiz')); - $row[] = new tabobject('reports', "$CFG->wwwroot/mod/quiz/report.php?q=$quiz->id", get_string('reports', 'quiz')); + $row[] = new tabobject('reports', "$CFG->wwwroot/mod/quiz/report.php?q=$quiz->id", get_string('results', 'quiz')); $row[] = new tabobject('preview', "$CFG->wwwroot/mod/quiz/attempt.php?q=$quiz->id", get_string('preview', 'quiz'), get_string('previewquiz', 'quiz', format_string($quiz->name))); if (isteacheredit($course->id)) { $row[] = new tabobject('edit', "$CFG->wwwroot/mod/quiz/edit.php?quizid=$quiz->id", get_string('edit'), get_string('editquizquestions', 'quiz')); - $row[] = new tabobject('manualgrading', "$CFG->wwwroot/mod/quiz/grading.php?quizid=$quiz->id", get_string("manualgrading", "quiz")); } $tabs[] = $row; -- 2.39.5