From c1f86c2afaf30e6d3c1eb533f74f4713e6e55e38 Mon Sep 17 00:00:00 2001 From: moodler Date: Mon, 3 May 2004 02:12:45 +0000 Subject: [PATCH] Removing some security checks that seem to cause trouble --- mod/quiz/quizfile.php | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/mod/quiz/quizfile.php b/mod/quiz/quizfile.php index db1b086e96..28cc7cd0dd 100644 --- a/mod/quiz/quizfile.php +++ b/mod/quiz/quizfile.php @@ -50,14 +50,18 @@ if (! ($course = get_record("course", "id", $quiz->course))) { error("Supplied quiz $quiz->name does not belong to a valid course"); } + require_login($course->id); - if (!isteacher($course->id) - and !quiz_get_user_attempt_unfinished($quiz->id, $USER->id) - and ! ($quiz->review && time() > $quiz->timeclose) - || !quiz_get_user_attempts($quiz->id, $USER->id) ) - { - error("Logged-in user is not allowed to view this quiz"); - } + + // For now, let's not worry about this. The following check causes + // problems sometimes when reviewing a quiz + //if (!isteacher($course->id) + // and !quiz_get_user_attempt_unfinished($quiz->id, $USER->id) + // and ! ($quiz->review && time() > $quiz->timeclose) + // || !quiz_get_user_attempts($quiz->id, $USER->id) ) + //{ + // error("Logged-in user is not allowed to view this quiz"); + //} /////////////////////////////////////////////////// // The logged-in user has the right to view material on this quiz! -- 2.39.5