From d7c80d9c142345e01fc45ee422db12764f8be21f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20B=C3=B6sch?= Date: Sun, 30 Apr 2023 11:20:12 +0200 Subject: [PATCH] MDL-77432 mod_assign: Confirm submission page standard and not incourse --- mod/assign/locallib.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mod/assign/locallib.php b/mod/assign/locallib.php index da0e2840e7c..d04c198561c 100644 --- a/mod/assign/locallib.php +++ b/mod/assign/locallib.php @@ -4463,10 +4463,12 @@ class assign { * @return string */ protected function view_remove_submission_confirm() { - global $USER; + global $USER, $PAGE; $userid = optional_param('userid', $USER->id, PARAM_INT); + $PAGE->set_pagelayout('standard'); + if (!$this->can_edit_submission($userid, $USER->id)) { print_error('nopermission'); } @@ -5360,10 +5362,12 @@ class assign { * @return string */ protected function check_submit_for_grading($mform) { - global $USER, $CFG; + global $USER, $CFG, $PAGE; require_once($CFG->dirroot . '/mod/assign/submissionconfirmform.php'); + $PAGE->set_pagelayout('standard'); + // Check that all of the submission plugins are ready for this submission. // Also check whether there is something to be submitted as well against atleast one. $notifications = array();