From: moodler Date: Mon, 3 May 2004 02:12:45 +0000 (+0000) Subject: Removing some security checks that seem to cause trouble X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c1f86c2afaf30e6d3c1eb533f74f4713e6e55e38;p=moodle.git Removing some security checks that seem to cause trouble --- 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!