MDL-36806 question files: fix unnecessary require_login call.
quiz_question_pluginfile later does the correct check. Doing this other check first means you get an error about changing $PAGE->context.
This commit is contained in:
+3
-3
@@ -1804,10 +1804,10 @@ function question_pluginfile($course, $context, $component, $filearea, $args, $f
|
||||
send_file_not_found();
|
||||
}
|
||||
|
||||
list($context, $course, $cm) = get_context_info_array($context->id);
|
||||
require_login($course, false, $cm);
|
||||
|
||||
if ($filearea === 'export') {
|
||||
list($context, $course, $cm) = get_context_info_array($context->id);
|
||||
require_login($course, false, $cm);
|
||||
|
||||
require_once($CFG->dirroot . '/question/editlib.php');
|
||||
$contexts = new question_edit_contexts($context);
|
||||
// check export capability
|
||||
|
||||
@@ -231,6 +231,9 @@ function question_preview_question_pluginfile($course, $context, $component,
|
||||
$filearea, $qubaid, $slot, $args, $forcedownload, $fileoptions) {
|
||||
global $USER, $DB, $CFG;
|
||||
|
||||
list($context, $course, $cm) = get_context_info_array($context->id);
|
||||
require_login($course, false, $cm);
|
||||
|
||||
$quba = question_engine::load_questions_usage_by_activity($qubaid);
|
||||
|
||||
if (!question_has_capability_on($quba->get_question($slot), 'use')) {
|
||||
|
||||
Reference in New Issue
Block a user